認証 の変更点
Top / 認証
- 追加された行はこの色です。
- 削除された行はこの色です。
- 認証 へ行く。
#freeze
#access
#analog
#contents
**ベーシック認証(パスワード付きページ)を作る [#pa415c65]
-参考 : [[ホームページにパスワードを掛ける:http://kan-chan.stbbs.net/download/cgi/tutorial/password.html]] [[htpasswd コマンドの実行方法:http://www.slogical.co.jp/tech/apache_htpasswd.html]] [[.htaccessでBasic認証にチャレンジ:http://www.shtml.jp/htaccess/basic.html]]
-パスワードファイルを作る
--パスワードファイルを置くディレクトリ(PUBLICディレクトリ以外!)下で、
htpasswd -c パスワードファイル名 ユーザ名
> パスワード入力
chmod 604 パスワードファイル名
-.htaccessを作る
--認証をかけたいディレクトリ下で、
emacs .htaccess
---.htaccess
AuthType Basic
AuthName "Please enter ID and password"
AuthUserFile パスワードファイルの絶対パス
AuthGroupFile /dev/null
<limit GET POST>
require valid-user
</limit>
-これで、.htaccess が存在するディレクトリ以下のファイルにアクセスする際には、認証が必要になる。