MDrivenServerCore in IIS
Hans Karlsen (talk | contribs) No edit summary |
Hans Karlsen (talk | contribs) No edit summary |
||
Line 6: | Line 6: | ||
<aspNetCore processPath=".\AppCompleteGenericCore.exe" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess" '''arguments="-iis=<nowiki>https://localhost/mdrCore1</nowiki>"''' /> SET THE URL YOUR APP SHOULD USE | <aspNetCore processPath=".\AppCompleteGenericCore.exe" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess" '''arguments="-iis=<nowiki>https://localhost/mdrCore1</nowiki>"''' /> SET THE URL YOUR APP SHOULD USE | ||
Complete web.config | Complete web.config | ||
<pre> | |||
<?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=".\AppCompleteGenericCore.exe" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess" arguments="-iis=https://localhost/MDRDebug" /> | |||
</system.webServer> | |||
</location> | |||
</configuration> | |||
<!--ProjectGuid: 3F248237-FF1B-4F4B-9029-DB6440643978--> | |||
</pre> | |||
When you want to debug from VS - set argument -iis=https://localhost/mdrcore1/ or the name you have , stop apppool, compile, then start apppool and app - navigate via browser | When you want to debug from VS - set argument -iis=https://localhost/mdrcore1/ or the name you have , stop apppool, compile, then start apppool and app - navigate via browser |
Revision as of 10:57, 16 October 2023
To host .net core in IIS:
- install runtime-aspnetcore-7.0.<lastet>-windows-hosting-bundle-installer
- create new apppool (only 1 app per pool), set apppool to "No managed code"
- Extract zip of installation into your site folder
- Change the web.config:
<aspNetCore processPath=".\AppCompleteGenericCore.exe" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess" arguments="-iis=https://localhost/mdrCore1" /> SET THE URL YOUR APP SHOULD USE
Complete 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=".\AppCompleteGenericCore.exe" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess" arguments="-iis=https://localhost/MDRDebug" /> </system.webServer> </location> </configuration> <!--ProjectGuid: 3F248237-FF1B-4F4B-9029-DB6440643978-->
When you want to debug from VS - set argument -iis=https://localhost/mdrcore1/ or the name you have , stop apppool, compile, then start apppool and app - navigate via browser
This page was edited more than 8 months ago on 05/21/2024. What links here