Mercurial > hg > rlgallery-misc
annotate lighttpd/rlgallery-ssl.conf @ 100:44e8aaa20d02 default tip
Fix the format of archive links.
author | John "Elwin" Edwards |
---|---|
date | Wed, 03 Aug 2022 20:49:38 -0400 |
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 } |