From: reyk Date: Mon, 4 Aug 2014 17:50:48 +0000 (+0000) Subject: Add HTTPS server example. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=825ae7ccf9f073c8ec2668ccd22fd0fbfec2b889;p=openbsd Add HTTPS server example. --- diff --git a/etc/examples/httpd.conf b/etc/examples/httpd.conf index 161c4d80260..7c949f20d1b 100644 --- a/etc/examples/httpd.conf +++ b/etc/examples/httpd.conf @@ -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