Version 6 (modified by mitty, 14 years ago) (diff) |
---|
Name-based VirtualHost with SSL
- 名前ベースのバーチャルホストで複数ドメインにSSLを割り当てることは可能か?
- 本質的な問題
HTTP プロトコルと SSL の原理を考えてみても不可能なことは明らかですね。 ネームベースのバーチャルホストは、HTTP リクエストヘッダに含まれる「Host」を参照 して アクセスするバーチャルホストを変化させますが、 SSL 接続の場合、HTTP リクエストヘッダは暗号化されており、 参照することができません。 参照するためには、暗号を解読してやればよいわけですが、 暗号を解読するためには先に証明書の交換を行う必要がありますね。
- 本質的な問題
- Why is it not possible to use Name-Based Virtual Hosting to identify different SSL virtual hosts?
- It is possible, but only if using a 2.2.12 or later web server, built with 0.9.8j or later OpenSSL. This is because it requires a feature that only the most recent revisions of the SSL specification added, called Server Name Indication (SNI).
- The reason is that the SSL protocol is a separate layer which encapsulates the HTTP protocol. So the SSL session is a separate transaction, that takes place before the HTTP session has begun. The server receives an SSL request on IP address X and port Y (usually 443). Since the SSL request did not contain any Host: field, the server had no way to decide which SSL virtual host to use. Usually, it just used the first one it found which matched the port and IP address specified.
- ただし、全てのVirtualHostで同じワイルドカード証明書を指定すれば可能
ドットから始まるファイル、ディレクトリにアクセス禁止
- apache :: ドットから始まるファイル、ディレクトリにアクセス禁止 (Tipsというかメモ)
#403 Forbidden RedirectMatch 403 /\.
Access control
- 特定のメソッド以外制限する
- <LimitExcept METHOD> => http://httpd.apache.org/docs/2.2/mod/core.html#limitexcept
- アクセス条件を複数にする
- Satisfy All|Any => http://httpd.apache.org/docs/2.2/mod/core.html#satisfy
- Allow/Denyの適用順
- デフォルトでは「Order Deny,Allow」 => http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html#order
- Deny ディレクティブが Allow ディレクティブの前に評価されます。 アクセスはデフォルトで許可されます。Deny ディレクティブに合わないか、Allow ディレクティブに合うクライアントはアクセスを許可されます。
- 使用例 (サーバへのアクセスはデフォルトで禁止、/tracへのアクセスは許可。但し、GET以外は禁止)
<Directory /> Options FollowSymLinks AllowOverride None Order Deny,Allow Deny from all </Directory> ScriptAlias /trac /usr/share/trac/cgi-bin/trac.fcgi <Location /trac> <LimitExcept GET> Deny from all </LimitExcept> </Location>
- 省略されているOrderディレクティブ(デフォルトの「Order Deny,Allow」)は、<LimitExcept>の範囲ではなく、外の<Location>以下に適用されていると考えるのが妥当
- 設定の失敗例として、以下のように設定するとGETではないPOSTメソッド等も制限されなくなり、期待する動作(GET以外のメソッドを403にする)を取らなくなる
<Directory /> Options FollowSymLinks AllowOverride None Order Deny,Allow Deny from all </Directory> ScriptAlias /trac /usr/share/trac/cgi-bin/trac.fcgi <Location /trac> Allow from all <LimitExcept GET> Deny from all </LimitExcept> </Location>
- <Location>全体で「Deny from all => Allow from all」の順で適用され、結果として全てのメソッドが制限されなくなっていると思われる
- 設定の失敗例として、以下のように設定するとGETではないPOSTメソッド等も制限されなくなり、期待する動作(GET以外のメソッドを403にする)を取らなくなる
- 使用例2 localhost(127.0.0.1)からのみ、GET以外も許可する
<Directory /> Options FollowSymLinks AllowOverride None Order Deny,Allow Deny from all </Directory> ScriptAlias /trac /usr/share/trac/cgi-bin/trac.fcgi <Location /trac> <LimitExcept GET> Deny from all Allow from 127.0.0.1 </LimitExcept> </Location>
- 内部リバースプロキシなどに応用できる => #11
- デフォルトでは「Order Deny,Allow」 => http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html#order