web.config 911 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <location path="." inheritInChildApplications="false">
  4. <system.webServer>
  5. <handlers>
  6. <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
  7. </handlers>
  8. <aspNetCore processPath="%LAUNCHER_PATH%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" arguments="%LAUNCHER_ARGS%">
  9. <environmentVariables />
  10. </aspNetCore>
  11. <!--<httpProtocol>
  12. <customHeaders>
  13. <add name="Access-Control-Allow-Origin" value="*" />
  14. <add name="Access-Control-Allow-Headers" value="x-requested-with" />
  15. <add name="Access-Control-Allow-Methods" value="GET, POST, PUT, DELETE, OPTIONS" />
  16. </customHeaders>
  17. </httpProtocol>-->
  18. </system.webServer>
  19. </location>
  20. </configuration>
  21. <!--ProjectGuid: 119c3d1a-bf79-4a02-abb9-0a8e0ad76f45-->