annotate lighttpd/rlgallery-ssl.conf @ 77:6830c5dba61d

Use HTTPS to load the Google Fonts stylesheet.
author John "Elwin" Edwards
date Fri, 30 Dec 2016 15:28:00 -0500
parents c99fac2b0dc7
children 716f8305d412
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
76
c99fac2b0dc7 Add files related to SSL support.
John "Elwin" Edwards
parents:
diff changeset
1 # Lighttpd SSL configuration for rlgallery.org
c99fac2b0dc7 Add files related to SSL support.
John "Elwin" Edwards
parents:
diff changeset
2 # Include in the main lighttpd configuration file
c99fac2b0dc7 Add files related to SSL support.
John "Elwin" Edwards
parents:
diff changeset
3
c99fac2b0dc7 Add files related to SSL support.
John "Elwin" Edwards
parents:
diff changeset
4 $SERVER["socket"] == ":443" {
c99fac2b0dc7 Add files related to SSL support.
John "Elwin" Edwards
parents:
diff changeset
5 ssl.engine = "enable"
c99fac2b0dc7 Add files related to SSL support.
John "Elwin" Edwards
parents:
diff changeset
6 ssl.pemfile = "/etc/lighttpd/ssl/host.pem"
c99fac2b0dc7 Add files related to SSL support.
John "Elwin" Edwards
parents:
diff changeset
7 ssl.ca-file = "/etc/lighttpd/ssl/chain.pem"
c99fac2b0dc7 Add files related to SSL support.
John "Elwin" Edwards
parents:
diff changeset
8 }