17 lines
632 B
XML
17 lines
632 B
XML
<?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>
|
|
<httpErrors errorMode="Detailed" existingResponse="PassThrough" />
|
|
<aspNetCore processPath="dotnet"
|
|
arguments=".\BiDashboard.dll"
|
|
stdoutLogEnabled="true"
|
|
stdoutLogFile=".\logs\stdout"
|
|
hostingModel="outofprocess" />
|
|
</system.webServer>
|
|
</location>
|
|
</configuration>
|