123456789101112131415161718 |
- <?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="dotnet" arguments=".\EInk.Lot2Lot3.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess" />
- <security>
- <requestFiltering>
- <requestLimits maxQueryString ="20971520"/>
- </requestFiltering>
- </security>
- </system.webServer>
- </location>
- </configuration>
- <!--ProjectGuid: 0c0961a1-494f-4ffc-82b9-1623aa58f174-->
|