You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.2 KiB
37 lines
1.2 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<system.web>
|
|
<compilation targetFramework="4.6.1" debug="true">
|
|
<assemblies>
|
|
<add assembly="netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" />
|
|
</assemblies>
|
|
</compilation>
|
|
<customErrors mode="Off" />
|
|
<globalization fileEncoding="utf-8" />
|
|
<httpRuntime targetFramework="4.0" maxRequestLength="2147483647" executionTimeout="3600" enableVersionHeader="false" requestPathInvalidCharacters="" />
|
|
<sessionState mode="Off" />
|
|
<pages controlRenderingCompatibilityVersion="4.0" />
|
|
</system.web>
|
|
<system.webServer>
|
|
<handlers>
|
|
<add name="HttpHandler" path="*" verb="*" type="Apewer.Web.ApiProgram" />
|
|
</handlers>
|
|
<httpErrors errorMode="Detailed" existingResponse="PassThrough">
|
|
<clear/>
|
|
</httpErrors>
|
|
<modules runAllManagedModulesForAllRequests="true">
|
|
<add name="HttpModule" type="Apewer.Web.ApiProgram" />
|
|
</modules>
|
|
<security>
|
|
<requestFiltering allowDoubleEscaping="true">
|
|
<fileExtensions>
|
|
<clear />
|
|
</fileExtensions>
|
|
<hiddenSegments>
|
|
<clear />
|
|
</hiddenSegments>
|
|
<requestLimits maxAllowedContentLength="2147483647" />
|
|
</requestFiltering>
|
|
</security>
|
|
</system.webServer>
|
|
</configuration>
|