Add files related to SSL support.

This commit is contained in:
John "Elwin" Edwards 2016-12-30 12:48:58 -05:00
parent 0f5f0bb67f
commit 9ba9d5c90e
4 changed files with 50 additions and 3 deletions

View file

@ -0,0 +1,8 @@
# Lighttpd SSL configuration for rlgallery.org
# Include in the main lighttpd configuration file
$SERVER["socket"] == ":443" {
ssl.engine = "enable"
ssl.pemfile = "/etc/lighttpd/ssl/host.pem"
ssl.ca-file = "/etc/lighttpd/ssl/chain.pem"
}