Mercurial > hg > rlgallery-misc
view lighttpd/rlgallery-ssl.conf @ 97:fb292a0184d9
Add a page about UltraRogue.
author | John "Elwin" Edwards |
---|---|
date | Mon, 05 Apr 2021 21:57:20 -0400 |
parents | 716f8305d412 |
children |
line wrap: on
line source
# 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" { ssl.engine = "enable" ssl.pemfile = "/etc/lighttpd/ssl/host.pem" ssl.ca-file = "/etc/lighttpd/ssl/chain.pem" }