Mercurial > hg > rlgallery-misc
annotate lighttpd/rlgallery-ssl.conf @ 80:716f8305d412
Update lighttpd configuration files.
Lighttpd now requires explicitly specifying both IPv4 and IPv6
addresses.
author | John "Elwin" Edwards |
---|---|
date | Wed, 27 Dec 2017 14:54:58 -0500 |
parents | c99fac2b0dc7 |
children |
rev | line source |
---|---|
76 | 1 # Lighttpd SSL configuration for rlgallery.org |
2 # Include in the main lighttpd configuration file | |
3 | |
80 | 4 server.modules += ( "mod_openssl" ) |
5 | |
6 $SERVER["socket"] == "0.0.0.0:443" { | |
76 | 7 ssl.engine = "enable" |
8 ssl.pemfile = "/etc/lighttpd/ssl/host.pem" | |
9 ssl.ca-file = "/etc/lighttpd/ssl/chain.pem" | |
10 } | |
80 | 11 |
12 $SERVER["socket"] == "[::]:443" { | |
13 ssl.engine = "enable" | |
14 ssl.pemfile = "/etc/lighttpd/ssl/host.pem" | |
15 ssl.ca-file = "/etc/lighttpd/ssl/chain.pem" | |
16 } |