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

10
lighttpd/certbot-cli.ini Normal file
View file

@ -0,0 +1,10 @@
# rlgallery.org configuration file for certbot
# Install at /etc/letsencrypt/cli.ini
authenticator = webroot
webroot-path = /var/www/lighttpd
agree-tos = True
non-interactive = True
# email, domain, and post-hook need to be specified by options

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"
}