Skip to content

Instantly share code, notes, and snippets.

@pedroinfo
Last active June 9, 2025 12:48
Show Gist options
  • Save pedroinfo/71ea84395fef97e5250886827dc3c5ca to your computer and use it in GitHub Desktop.
Save pedroinfo/71ea84395fef97e5250886827dc3c5ca to your computer and use it in GitHub Desktop.
IIS
<configuration>
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
<system.webServer>
<security>
<authentication>
<anonymousAuthentication enabled="true" />
<windowsAuthentication enabled="false" />
</authentication>
</security>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment