web.config 746 B

123456789101112131415161718
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <location path="." inheritInChildApplications="false">
  4. <system.webServer>
  5. <!--允许上传文件长度,单位字节-->
  6. <handlers>
  7. <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
  8. </handlers>
  9. <aspNetCore processPath="dotnet" arguments=".\EInk.Lot2Lot3.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess" />
  10. <security>
  11.  <requestFiltering>
  12. <requestLimits maxQueryString ="20971520"/>
  13. </requestFiltering>
  14. </security>
  15. </system.webServer>
  16. </location>
  17. </configuration>
  18. <!--ProjectGuid: 0c0961a1-494f-4ffc-82b9-1623aa58f174-->