Apache2 で Basic認証
Apache2.4 でBasic 認証をする方法です。
.htacess を使う方法です。
http://hostname/tmp/test にBasic 認証をかけるとすると、
サーバーの Root が /var/www であると、
/var/www/tmp/test/.htaccess
AuthUserFile /var/www/tmp/test/.htpasswd
AuthName "Basic Auth"
AuthType Basic
Require valid-user
パスワードの作成 ユーザーは scott
htpasswd -c .htpasswd scott
ブラウザーで、http://tmp/test にアクセスすると、
.htacess を使わない時は、Apache2 の設定ファイルで
<Directory "/var/www/tmp/test">
AuthUserFile /etc/apache2/.htpasswd
AuthName "Basic Auth"
AuthType Basic
Require valid-user
</Directory>
Author And Source
この問題について(Apache2 で Basic認証), 我々は、より多くの情報をここで見つけました https://qiita.com/ekzemplaro/items/f2cd35862538a2f10207著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .