rlgallery-misc/lighttpd/rlgallery-ssl.conf

17 lines
441 B
Text
Raw Normal View History

2016-12-30 12:48:58 -05:00
# Lighttpd SSL configuration for rlgallery.org
# Include in the main lighttpd configuration file
server.modules += ( "mod_openssl" )
$SERVER["socket"] == "0.0.0.0:443" {
ssl.engine = "enable"
ssl.pemfile = "/etc/lighttpd/ssl/host.pem"
ssl.ca-file = "/etc/lighttpd/ssl/chain.pem"
}
$SERVER["socket"] == "[::]:443" {
2016-12-30 12:48:58 -05:00
ssl.engine = "enable"
ssl.pemfile = "/etc/lighttpd/ssl/host.pem"
ssl.ca-file = "/etc/lighttpd/ssl/chain.pem"
}