Deploying Seq on IIS - asp.net-core

I'm trying to Deploy Seq by Datalust on IIS and I'm getting this error message:
HTTP Error 500.30 - ANCM In-Process Start Failure
here is the error in windows event viewer
Failed to start application '/LM/W3SVC/2/ROOT', ErrorCode '0x8007023e'.
here is the web.config file:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<location path="." inheritInChildApplications="false">
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath=".\Seq.exe" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess" />
</system.webServer>
</location>
</configuration>
the official documents are only available for deployment on Azure using Docker image or self hosted Kestrel application. Is my approach possible?

Seq's Windows hosting infrastructure uses HTTP.sys and not the ASP.NET Core/IIS integration, so this is not possible as far as we know, today.
IIS can be used as a reverse proxy in front of Seq, however, which covers some of the scenarios in which you might want to do this.

Related

HTTP Error 500.19 - Internal Server Error-0x8007000d

I encountered this error when I tried to host my asp .net core project on local iis.
I have installed the asp .net hosting bundle, checked the permissions to my web.config file but still of no use.
My web.config file is as follows:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<location path="." inheritInChildApplications="false">
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath=".\SampleApp1.exe" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess" />
</system.webServer>
</location>
</configuration>
<!--ProjectGuid: e4b7dcc7-c9c3-48c5-9a12-0a9ee0c9ac2c-->
My asp .net version is 3.1.201.
Also, usually at the error page you should see the physical path as well but in my case that's empty though I set the physical path to my web files.

403 Forbidden Error for .Net Core 3.1 Web Api only for Delete & PUT method

Application in .Net Core 3.1 and angular which working perfectly in locally. I hosted same application one of the hosting provider.
I am getting error "403 - Forbidden: Access is denied." for PUT & DELETE methods in web api response. I don't know why GET & POST methods are working in same application.
ASP.NET Core with IIS - HTTP Verb Not Allowed
Above link have somewhat same issue but getting 405 error. Solution given in same thread also tried but not working for me.
Please help on the same.
Are your frontend in angular? If yes, you have to add auth bearer header for put and delete correctly.
This code worked for me.
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<location path="." inheritInChildApplications="false">
<system.webServer>
<modules runAllManagedModulesForAllRequests="false">
<remove name="WebDAVModule" />
</modules>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath="dotnet" arguments=".\XXXXXXXXXXX.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess" />
</system.webServer>
</location>
</configuration>
I raised a ticket to my hosting provider. They made some settings and after that its working fine.

Unable to switch from InProcess to OutOfProcess ASP.NET Core hosting mode in ASP.NET Core 3.1

As part of a test (mixing Windows auth with JWT auth) I'd like to see how my application behaves using OutOfProcess hosting mode. Looking at my published output, I see that the only difference is in web.config in the aspNetCore tag (setting hostingModel to either InProcess or OutOfProcess).
but, when I change the value from InProcess to OutOfProcess and relaunch the website and look at the headers returned when I make a request, I see the following header in both cases
Server: Microsoft-IIS/10.0
Thus, I'm concluding that out of process hosting doesn't take as I'm supposed to get a Kestrel as I get when I self-host
Server: Kestrel
So, what am I missing?
As far as I know, if you set the hosting mode to OutOfProcess, the response header will become the Kestrel. I have created a test demo on my side and it worsk well. Could you please post more details information about the self-host or framework dependency.
My web.config:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<location path="." inheritInChildApplications="false">
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath="dotnet" arguments=".\donet.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="OutOfProcess" />
</system.webServer>
</location>
</configuration>
Result:

.Net Core AspNetCoreHostingModel what does it mean?

By this link, you can read about ASP.NET Core Module
To configure an app for in-process hosting, add the property to the app's project file with a value of InProcess (out-of-process hosting is set with OutOfProcess)
I've read several times but I don't understand what it's mean?
When I must use OutOfProcess and when InProcess?
Pros and cons these models?
What to rely on when making a decision?
Is referring to how IIS is hosting your app (web.config).
InProcess : IIS host the app (w3wp.exe or iisexpress.exe)
OutOfProcess: Kestrel host the app, IIS is a proxy to kestrel.
More details on how to configure and what to keep in mind for each one when using.
'InProcess' has significant better performance according to Microsoft.
To configure InProcess add web config with:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<location path="." inheritInChildApplications="false">
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="InProcess">
<environmentVariables />
</aspNetCore>
</system.webServer>
</location>
</configuration>
For OutOfProcess:
<?xml version="1.0" encoding="utf-8"?>
configuration>
<location path="." inheritInChildApplications="false">
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="OutOfProcess">
<environmentVariables />
</aspNetCore>
</system.webServer>
</location>
</configuration>
when you will generate the build in my-api folder or plain publish to your server with:
dotnet publish -o my-api -c release
will take care if your %LAUNCHER_PATH% and %LAUNCHER_ARGS%.
What you are referring in initial question possibly is about .csproj config that dictate how app runs locally, default is InProcess

HTTP Error 500.19 - Internal Server Error (says invalid web.config, but its valid)

This is on a brand new server running windows 2016, installed the hosting bundle, set the app pool to no managed.
Here is my web.config (generated by vs, using a default, nothing changed asp.net 2.0 web app)
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath="dotnet" arguments=".\WebApplication2.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" />
</system.webServer>
</configuration>
I had not installed the hosting bundle properly.. now its installed properly it all works