31 lines
936 B
XML
31 lines
936 B
XML
<?xml version="1.0"?>
|
|
<!--
|
|
有关如何配置 ASP.NET 应用程序的详细信息,请访问
|
|
http://go.microsoft.com/fwlink/?LinkId=169433
|
|
-->
|
|
<configuration>
|
|
<!--
|
|
有关 web.config 更改的说明,请参见 http://go.microsoft.com/fwlink/?LinkId=235367。
|
|
|
|
可在 <httpRuntime> 标记上设置以下特性。
|
|
<system.Web>
|
|
<httpRuntime targetFramework="4.8" />
|
|
</system.Web>
|
|
-->
|
|
<system.web>
|
|
<compilation targetFramework="4.8" debug="true"/>
|
|
<httpRuntime executionTimeout="600" maxRequestLength="419430400" targetFramework="4.5.2"/>
|
|
<customErrors mode="Off"/>
|
|
</system.web>
|
|
<system.webServer>
|
|
<security>
|
|
<requestFiltering>
|
|
<requestLimits maxAllowedContentLength="419430400"/>
|
|
</requestFiltering>
|
|
</security>
|
|
<directoryBrowse enabled="true"/>
|
|
<modules>
|
|
<remove name="WebDAVModule"/>
|
|
</modules>
|
|
</system.webServer>
|
|
</configuration> |