view lighttpd/rlgallery-ssl.conf @ 100:44e8aaa20d02 default tip

Fix the format of archive links.
author John "Elwin" Edwards
date Wed, 03 Aug 2022 20:49:38 -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"
}