-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.config
25 lines (25 loc) · 927 Bytes
/
web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?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="true"
stdoutLogFile=".\Logs\Console\stdout" />
<modules>
<remove name="DefaultAuthentication" />
<remove name="FormsAuthentication" />
<remove name="Profile" />
<remove name="RoleManager" />
<remove name="ScriptModule-4.0" />
<remove name="ServiceModel-4.0" />
<remove name="UrlAuthorization" />
<remove name="WindowsAuthentication" />
</modules>
</system.webServer>
</location>
<runtime>
<gcServer enabled="true"/>
</runtime>
</configuration>