Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <configuration>
  2. <system.web>
  3. <authentication mode="Windows" />
  4. <authorization>
  5. <allow roles="ADsome.user" />
  6. <deny users="*" />
  7. </authorization>
  8. ...
  9.  
  10. <configuration>
  11. <location path="RelativePath" >
  12. <system.web>
  13. <authorization>
  14. <allow roles="ADsome.user" />
  15. <deny users="*" />
  16. </authorization>
  17. </system.web>
  18. </location>
  19.  
  20. <configuration>
  21. <system.webServer>
  22. <security>
  23. <authorization>
  24. <remove users="*" roles="" verbs="" />
  25. <add accessType="Allow" roles="ADjohannes.colmsee" />
  26. </authorization>
  27. </configuration>
  28.  
  29. <configuration>
  30. <location path="RelativePath" >
  31. <system.webServer>
  32. <security>
  33. <authorization>
  34. <remove users="*" roles="" verbs="" />
  35. <add accessType="Allow" roles="ADdenis.kopic" />
  36. </authorization>
  37. </security>
  38. </system.webServer>
  39. </location>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement