Advertisement
Guest User

Untitled

a guest
May 21st, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <!-- To customize the asp.net core module uncomment and edit the following section.
  4. For more info see https://go.microsoft.com/fwlink/?linkid=838655 -->
  5. <!--
  6. <system.webServer>
  7. <handlers>
  8. <remove name="aspNetCore"/>
  9. <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
  10. </handlers>
  11. <aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" />
  12. </system.webServer>
  13. -->
  14. <system.webServer>
  15. <httpProtocol>
  16. <customHeaders>
  17. <remove name="X-Powered-By" />
  18. </customHeaders>
  19. </httpProtocol>
  20. <handlers>
  21. <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
  22. </handlers>
  23. <aspNetCore processPath="dotnet" arguments=".\Recepti.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" />
  24. </system.webServer>
  25. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement