Mercurial > hg > rlgallery-misc
annotate lighttpd/rlgallery-ssl.conf @ 86:5f1b4d3151bb
Add some neglected dgamelaunch initialization commands.
author | John "Elwin" Edwards |
---|---|
date | Sat, 24 Nov 2018 10:34:26 -0500 |
parents | 716f8305d412 |
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 } |