|
|
@ -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 |
|
|
|