Add SNI post.
authorW. Trevor King <wking@drexel.edu>
Thu, 15 Dec 2011 18:59:28 +0000 (13:59 -0500)
committerW. Trevor King <wking@drexel.edu>
Thu, 15 Dec 2011 18:59:28 +0000 (13:59 -0500)
posts/SNI.mdwn [new file with mode: 0644]

diff --git a/posts/SNI.mdwn b/posts/SNI.mdwn
new file mode 100644 (file)
index 0000000..ac7af53
--- /dev/null
@@ -0,0 +1,17 @@
+[[!meta  title="Name-Based Virtual Hosts with SSL/TLS on Apache"]]
+
+Despite [some Apache comments to the contrary][contrary], it *is*
+possible to use Apache to host several SSL/TLS hosts on the same
+IP/port combination.  The key is [Server Name Indication][SNI] (SNI),
+in which the client indicates the host name with which it wants to
+connect explicitly.  The details for implementing SNI-support, see the
+[Apache Wiki][apache-wiki] and the [Gentoo wiki][gentoo-wiki].
+
+
+[contrary]: http://httpd.apache.org/docs/2.0/ssl/ssl_faq.html#vhosts
+[SNI]: http://en.wikipedia.org/wiki/Server_Name_Indication
+[apache-wiki]: http://wiki.apache.org/httpd/NameBasedSSLVHostsWithSNI
+[gentoo-wiki]: http://en.gentoo-wiki.com/wiki/Apache2/SSL_and_Name_Based_Virtual_Hosts
+
+[[!tag tags/linux]]
+[[!tag tags/programming]]