Linux/Apache.md
... ...
@@ -3,14 +3,16 @@
3 3
4 4
# ドキュメント
5 5
- [Apache HTTP Server Documentation](http://httpd.apache.org/docs/)
6
+ - [現行バージョン](http://httpd.apache.org/docs/current/)
7
+ - [Version 2.4](http://httpd.apache.org/docs/2.4/)
6 8
- [Version 2.2](http://httpd.apache.org/docs/2.2/)
7 9
8
- - [mod_authz_host](http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html) ([mod_access](http://httpd.apache.org/docs/2.0/mod/mod_access.html))
10
+ - [mod_authz_host](http://httpd.apache.org/docs/current/mod/mod_authz_host.html) ([mod_access](http://httpd.apache.org/docs/2.0/mod/mod_access.html))
9 11
- Allow, Deny, Order ディレクティブ
10 12
11
- - [mod_setenvif](http://httpd.apache.org/docs/2.2/mod/mod_setenvif.html)
13
+ - [mod_setenvif](http://httpd.apache.org/docs/current/mod/mod_setenvif.html)
12 14
13
- - [Apache の SSL/TLS 暗号化](http://httpd.apache.org/docs/2.2/ssl/)
15
+ - [Apache の SSL/TLS 暗号化](http://httpd.apache.org/docs/current/ssl/)
14 16
15 17
# Apache用モジュールをコンパイルできるようにする
16 18
- httpd-devel (apxs) をインストールしておく。
... ...
@@ -19,7 +21,7 @@
19 21
```
20 22
21 23
# バーチャルホスト設定
22
-- [バーチャルホスト説明書](http://httpd.apache.org/docs/2.2/vhosts/)
24
+- [バーチャルホスト説明書](http://httpd.apache.org/docs/current/vhosts/)
23 25
24 26
## 設定
25 27
- /etc/httpd/conf.d/VirtualHosts.conf
... ...
@@ -54,8 +56,8 @@ NameVirtualHost ディレクティブを設定する。<br />
54 56
httpd.conf を修正するより conf.d に VirtualHosts.conf として専用のファイルを作成しておく方が忘れなくていいかも。
55 57
56 58
# Digest 認証
57
-- [認証、承認、アクセス制御](http://httpd.apache.org/docs/2.2/howto/auth.html)
58
-- [mod_auth_digest](http://httpd.apache.org/docs/2.2/mod/mod_auth_digest.html)
59
+- [認証、承認、アクセス制御](http://httpd.apache.org/docs/current/howto/auth.html)
60
+- [mod_auth_digest](http://httpd.apache.org/docs/current/mod/mod_auth_digest.html)
59 61
- レルム/ユーザ/パスワード追加
60 62
```
61 63
htdigest [-c] passwdfile <realm> <username>
... ...
@@ -453,4 +455,4 @@ print $q->redirect( $host . '/' );
453 455
454 456
# Basic認証にタイムアウトを設定する
455 457
- [mod_auth_timeout](http://secure.linuxbox.com/tiki/tiki-index.php?page=mod_auth_timeout)
456
-- [サードパーティー製認証モジュール](http://www.thinkit.co.jp/article/120/3/2.html)
... ...
\ No newline at end of file
0
+- [サードパーティー製認証モジュール](http://www.thinkit.co.jp/article/120/3/2.html)