comparison lighttpd/rlgallery.conf @ 80:716f8305d412

Update lighttpd configuration files. Lighttpd now requires explicitly specifying both IPv4 and IPv6 addresses.
author John "Elwin" Edwards
date Wed, 27 Dec 2017 14:54:58 -0500
parents 900da50ee11c
children 36d6787f7aed
comparison
equal deleted inserted replaced
79:ea014ed97581 80:716f8305d412
1 # lighttpd configuration file for rlgallery.org 1 # lighttpd configuration file for rlgallery.org
2 # Include this file in your lighttpd.conf 2 # Include this file in your lighttpd.conf
3
4 # IPv4 and IPv6 addresses need to be explicitly specified
5 server.bind = "0.0.0.0"
6 $SERVER["socket"] == "[::]:80" { }
3 7
4 # Ensure index.cgi is in the list 8 # Ensure index.cgi is in the list
5 index-file.names += ( 9 index-file.names += (
6 "index.xhtml", "index.html", "index.htm", "index.cgi" 10 "index.xhtml", "index.html", "index.htm", "index.cgi"
7 ) 11 )
33 dir-listing.activate = "enable" 37 dir-listing.activate = "enable"
34 } 38 }
35 $HTTP["url"] =~ "^/ttyrecs/" { 39 $HTTP["url"] =~ "^/ttyrecs/" {
36 dir-listing.activate = "enable" 40 dir-listing.activate = "enable"
37 } 41 }
42