htaccess to password protect a specific server
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
# ---------------------------------------------------------------------- | |
# Password protect staging server | |
# Use one .htaccess file across multiple environments | |
# (e.g. local, dev, staging, production) | |
# but only password protect a specific environment. | |
# ---------------------------------------------------------------------- | |
SetEnvIf Host staging.domain.com passreq | |
AuthType Basic | |
AuthName "Password Required" | |
AuthUserFile /full/path/to/.htpasswd | |
Require valid-user | |
Order allow,deny | |
Allow from all | |
Deny from env=passreq | |
Satisfy any |
I think @jan-vodila and @loekwetzels are right. Probably not a good solution for anything seriously important
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@elliotlewis - Unfortunately I think that @loekwetzels is right. If you put to your hosts file a record as he describes, then
SetEnvIf Host staging.domain.com
returnsFALSE
, soenv
variable won't bepassreq
. Because my host isomgihazaccess
(from @loekwetzels example).