Skip to content

Instantly share code, notes, and snippets.

@adamkudrna
Created June 12, 2015 23:33
Show Gist options
  • Save adamkudrna/f9057cd87d4afe6e0088 to your computer and use it in GitHub Desktop.
Save adamkudrna/f9057cd87d4afe6e0088 to your computer and use it in GitHub Desktop.
IIS deny from all 401
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<security>
<authorization>
<remove users="*" roles="" verbs="" />
<add accessType="Allow" roles="Administrators" />
</authorization>
</security>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment