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.
|
|
<?xml version="1.0" encoding="utf-8"?> <configuration> <system.web> <compilation targetFramework="4.0" debug="true" /> <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>
|