Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <system.web>
  2. <customErrors mode="Off" />
  3. <compilation targetFramework="4.6.1" />
  4. <httpRuntime targetFramework="4.5" />
  5. <authentication mode="Windows" />
  6. <authorization>
  7. <deny users="?" />
  8. </authorization>
  9. <httpModules />
  10. </system.web>
  11.  
  12. <system.webServer>
  13. <security >
  14. <authentication>
  15. <anonymousAuthentication enabled="false" />
  16. <windowsAuthentication enabled="true" />
  17. </authentication>
  18. </security>
  19. </system.webServer>
  20.  
  21. <location path="TestSite">
  22. <system.webServer>
  23. <security>
  24. <authentication>
  25. <windowsAuthentication enabled="true" />
  26. </authentication>
  27. </security>
  28. </system.webServer>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement