Created
September 27, 2024 09:05
-
-
Save Guley/6077f779999a045ba142348a709fa741 to your computer and use it in GitHub Desktop.
Skip basic auth on htaccess
This file contains 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
## .htaccess | |
### ISPConfig folder protection begin ### | |
AuthType Basic | |
AuthName "Members Only" | |
AuthUserFile /path/.htpasswd | |
require valid-user | |
### ISPConfig folder protection end ### | |
SetEnvIf Request_URI "^/url?quertsting" noauth=1 | |
## .htpasswd | |
# create password https://www.web2generators.com/apache-tools/htpasswd-generator | |
username:password |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment