httpd.conf | 設定の中心となるファイル。小さいサイトであればこのファイルだけに完結させた方が楽 |
magic | 拡張子以外によるMIMEタイプの設定をするファイル |
サーバー移転などのURLリダイレクトや動的ページをHTMLに見せるなどの用途で使われる。
RewriteEngine on RewriteRule ^from/(.+)$ to/$1 [R=301,L]
RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule book([0-9a-zA-Z_\-]+).html$ http://sample.com /test/index.php?bookid=$1 [L]
http://blog.dawgsdk.org/weblog/archives/411011
#By TF LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_ajp_module modules/mod_proxy_ajp.so <Location /任意の名前/> ProxyPass ajp://サーバーのIP:8009/コンテキスト名/ </Location>
AllowOverride AuthConfigとすると毎回.htaccessファイルを探しにいくので利用しない場合はNoneにしておく
<Directory "制限したいディレクトリ"> AuthUserFile conf/.htpasswd AuthName "hogehoge" AuthType Basic require valid-user </Directory>
<Direcotry> AllowOverride AuthConfig </Directory>
AuthUserFile conf/.htpasswd AuthGroupFile /dev/null AuthName "Please enter your ID and password" AuthType Basic require valid-user
/usr/local/apache2/bin/htpasswd -c .htpasswd USER
http://www.atmarkit.co.jp/flinux/rensai/linuxtips/699apachedigest.html
このページのとおりにやったら一部情報が古くてはまった。
Invalid command 'AuthDigestFile', perhaps misspelled or defined by a module not included in the server configuration
AuthDigestFileというのはBASIC認証と同じAuthUserFileに統一されたようだ。
<Directory "/var/www/html/"> AuthType Digest AuthName "Secret Zone" AuthDigestDomain /personal/ AuthUserFile /etc/httpd/conf/.htdigest Require user secret </Directory>
AuthNameは単なるダイアログ表示だけの存在ではなく、次のユーザ作成の時に一致させる必要があるので注意。
htdigest -c /etc/httpd/conf/.htdigest 'Secret Zone' secret
http://hegel.aichi-u.ac.jp/manual/sections.html
公式サイトより引用
Require valid-user Allow from 192.168.1 Satisfy Any