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.

23 lines
909 B

5 years ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <location path="." inheritInChildApplications="false">
  4. <system.webServer>
  5. <modules>
  6. <remove name="WebDAVModule" />
  7. </modules>
  8. <handlers>
  9. <remove name="WebDAV" />
  10. <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
  11. </handlers>
  12. <security>
  13. <requestFiltering>
  14. <requestLimits maxAllowedContentLength="2147483648" />
  15. </requestFiltering>
  16. </security>
  17. <aspNetCore processPath="dotnet" arguments=".\SSCMS.Web.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess">
  18. <environmentVariables>
  19. <environmentVariable name="ASPNETCORE_ENVIRONMENT" value="Production" />
  20. </environmentVariables>
  21. </aspNetCore>
  22. </system.webServer>
  23. </location>
  24. </configuration>