Created
June 29, 2011 08:39
-
-
Save nissuk/1053457 to your computer and use it in GitHub Desktop.
Apache: localhost内ではBASIC認証制限をかけない(.htaccess)
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
Order Deny,Allow | |
Satisfy Any | |
# localhost | |
Allow from localhost | |
# other | |
AuthUserFile /path/to/.htpasswd | |
AuthGroupFile /dev/null | |
AuthName "Please enter your ID and password" | |
AuthType Basic | |
require valid-user |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment