Skip to content

Commit 734394a

Browse files
Changed web.config
1 parent c10a593 commit 734394a

File tree

2 files changed

+8
-4
lines changed
  • aspnet-core/src

2 files changed

+8
-4
lines changed

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Host/web.config

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
<handlers>
55
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
66
</handlers>
7-
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" startupTimeLimit="3600" requestTimeout="23:00:00" />
7+
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" startupTimeLimit="3600" requestTimeout="23:00:00">
8+
<environmentVariables />
9+
</aspNetCore>
810
<httpProtocol>
911
<customHeaders>
1012
<remove name="X-Powered-By" />

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/web.config

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22
<configuration>
33
<system.webServer>
44
<handlers>
5-
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
5+
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
66
</handlers>
7-
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false"/>
7+
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false">
8+
<environmentVariables />
9+
</aspNetCore>
810
<staticContent>
911
<remove fileExtension=".woff" />
1012
<remove fileExtension=".woff2" />
@@ -17,4 +19,4 @@
1719
</customHeaders>
1820
</httpProtocol>
1921
</system.webServer>
20-
</configuration>
22+
</configuration>

0 commit comments

Comments
 (0)