packages/net/lighttpd/files/lighttpd.conf
juhosg b806c278bf packages: lighttpd: update to 1.4.32
This patch updates the lighttpd package to version 1.4.32
The makefile has been reworked and uses a macro for module
creation. The config file has been updated to include module
dependant configuration from conf.d subdirectory.

Signed-off-by: Gerald Matzka <mgerald21@yahoo.de>
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@38469 3c298f89-4303-0410-b956-a3cf2f4a3e73
2013-10-20 15:58:14 +00:00

39 lines
1.1 KiB
Plaintext

# lighttpd configuration file
#
server.modules = (
)
### only root can use these options
#server.chroot = "/"
######### Options that are good to be but not neccesary to be changed #######
#server.port = 81
#server.bind = "localhost"
server.document-root = "/www"
server.upload-dirs = ( "/tmp" )
server.errorlog = "/var/log/lighttpd/error.log"
server.pid-file = "/var/run/lighttpd.pid"
#server.username = "www-data"
#server.groupname = "www-data"
#server.tag = "lighttpd"
#server.errorlog-use-syslog = "enable"
#server.network-backend = "write"
index-file.names = ( "index.php", "index.html",
"index.htm", "default.htm",
" index.lighttpd.html" )
static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
## Use ipv6 if available
#include_shell "/usr/share/lighttpd/use-ipv6.pl"
#dir-listing.encoding = "utf-8"
#server.dir-listing = "enable"
include "/etc/lighttpd/mime.conf"
include_shell "cat /etc/lighttpd/conf.d/*.conf"