Last active
June 9, 2025 12:48
-
-
Save pedroinfo/71ea84395fef97e5250886827dc3c5ca to your computer and use it in GitHub Desktop.
IIS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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