From: Rich Bowen Date: Mon, 5 Mar 2012 01:18:03 +0000 (+0000) Subject: As per https://issues.apache.org/bugzilla/show_bug.cgi?id=51746, note X-Git-Tag: 2.2.23~244 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bba0322868058f6a1ec7d8475d69046b4732a0e8;p=thirdparty%2Fapache%2Fhttpd.git As per https://issues.apache.org/bugzilla/show_bug.cgi?id=51746, note that wildcard certs and subjectAltName are viable solutions. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1296921 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/ssl/ssl_faq.html.en b/docs/manual/ssl/ssl_faq.html.en index 047eaa184ea..c2c39eb408d 100644 --- a/docs/manual/ssl/ssl_faq.html.en +++ b/docs/manual/ssl/ssl_faq.html.en @@ -762,7 +762,13 @@ error when connecting to my newly installed server? Apache has to know the Host HTTP header field. To do this, the HTTP request header has to be read. This cannot be done before the SSL handshake is finished, but the information is needed in order to - complete the SSL handshake phase. Bingo!

+ complete the SSL handshake phase. See the next question for how to + circumvent this issue.

+ +

Note that if you have a wildcard SSL certificate, or a + certificate that has multple hostnames on it using subjectAltName + fields, you can use SSL on name-based virtual hosts without further + workarounds.

Why is it not possible to use Name-Based @@ -778,6 +784,11 @@ Virtual Hosting to identify different SSL virtual hosts?

feature that only the most recent revisions of the SSL specification added, called Server Name Indication (SNI).

+

Note that if you have a wildcard SSL certificate, or a + certificate that has multple hostnames on it using subjectAltName + fields, you can use SSL on name-based virtual hosts without further + workarounds.

+

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. diff --git a/docs/manual/ssl/ssl_faq.xml b/docs/manual/ssl/ssl_faq.xml index 30f5feceb54..9093cab2174 100644 --- a/docs/manual/ssl/ssl_faq.xml +++ b/docs/manual/ssl/ssl_faq.xml @@ -771,7 +771,13 @@ error when connecting to my newly installed server? Apache has to know the Host HTTP header field. To do this, the HTTP request header has to be read. This cannot be done before the SSL handshake is finished, but the information is needed in order to - complete the SSL handshake phase. Bingo!

+ complete the SSL handshake phase. See the next question for how to + circumvent this issue.

+ +

Note that if you have a wildcard SSL certificate, or a + certificate that has multple hostnames on it using subjectAltName + fields, you can use SSL on name-based virtual hosts without further + workarounds.

Why is it not possible to use Name-Based @@ -787,6 +793,11 @@ Virtual Hosting to identify different SSL virtual hosts? feature that only the most recent revisions of the SSL specification added, called Server Name Indication (SNI).

+

Note that if you have a wildcard SSL certificate, or a + certificate that has multple hostnames on it using subjectAltName + fields, you can use SSL on name-based virtual hosts without further + workarounds.

+

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.