Add files related to SSL support.
This commit is contained in:
parent
0f5f0bb67f
commit
9ba9d5c90e
4 changed files with 50 additions and 3 deletions
10
lighttpd/certbot-cli.ini
Normal file
10
lighttpd/certbot-cli.ini
Normal 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
|
||||
8
lighttpd/rlgallery-ssl.conf
Normal file
8
lighttpd/rlgallery-ssl.conf
Normal 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"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue