2016-11-17 10:34:10 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<configuration>
|
|
|
|
<!--
|
|
|
|
Configure your application settings in appsettings.json. Learn more at https://go.microsoft.com/fwlink/?LinkId=786380
|
|
|
|
-->
|
|
|
|
<system.webServer>
|
|
|
|
<handlers>
|
2019-03-12 10:00:11 +00:00
|
|
|
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
|
2016-11-17 10:34:10 +01:00
|
|
|
</handlers>
|
2019-03-12 10:00:11 +00:00
|
|
|
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false">
|
|
|
|
<environmentVariables />
|
|
|
|
</aspNetCore>
|
2016-11-17 10:34:10 +01:00
|
|
|
</system.webServer>
|
2019-03-12 10:00:11 +00:00
|
|
|
</configuration>
|