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