comparison 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
comparison
equal deleted inserted replaced
79:ea014ed97581 80:716f8305d412
1 # Lighttpd SSL configuration for rlgallery.org 1 # Lighttpd SSL configuration for rlgallery.org
2 # Include in the main lighttpd configuration file 2 # Include in the main lighttpd configuration file
3 3
4 $SERVER["socket"] == ":443" { 4 server.modules += ( "mod_openssl" )
5
6 $SERVER["socket"] == "0.0.0.0:443" {
5 ssl.engine = "enable" 7 ssl.engine = "enable"
6 ssl.pemfile = "/etc/lighttpd/ssl/host.pem" 8 ssl.pemfile = "/etc/lighttpd/ssl/host.pem"
7 ssl.ca-file = "/etc/lighttpd/ssl/chain.pem" 9 ssl.ca-file = "/etc/lighttpd/ssl/chain.pem"
8 } 10 }
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 }