Add HTTPS server example.
authorreyk <reyk@openbsd.org>
Mon, 4 Aug 2014 17:50:48 +0000 (17:50 +0000)
committerreyk <reyk@openbsd.org>
Mon, 4 Aug 2014 17:50:48 +0000 (17:50 +0000)
etc/examples/httpd.conf

index 161c4d8..7c949f2 100644 (file)
@@ -1,4 +1,4 @@
-# $OpenBSD: httpd.conf,v 1.7 2014/08/04 16:07:59 reyk Exp $
+# $OpenBSD: httpd.conf,v 1.8 2014/08/04 17:50:48 reyk Exp $
 
 #
 # Macros
@@ -45,6 +45,12 @@ server "www.example.com" {
        root "/htdocs/www.example.com"
 }
 
+# An HTTPS server using SSL/TLS
+server "secure.example.com" {
+       listen on 127.0.0.1 port 443 ssl
+       root "/htdocs/secure.example.com"
+}
+
 # Another server on a different internal IPv4 address
 server "intranet.example.com" {
        listen on 10.0.0.1 port 80