diff --git a/doc/lighttpd.conf b/doc/lighttpd.conf index 0bb6701a..bebf846d 100644 --- a/doc/lighttpd.conf +++ b/doc/lighttpd.conf @@ -43,9 +43,12 @@ server.document-root = "/www/pages/" server.errorlog = "/www/logs/lighttpd.error.log" # files to check for if .../ is requested -server.indexfiles = ( "index.php", "index.html", +index-file.names = ( "index.php", "index.html", "index.htm", "default.htm" ) +## set the event-handler (read the performance section in the manual) +# server.event-handler = "freebsd-kqueue" # needed on OS X + # mimetype mapping mimetype.assign = ( ".pdf" => "application/pdf", @@ -107,7 +110,7 @@ mimetype.assign = ( ## send a different Server: header ## be nice and keep it at lighttpd -#server.tag = "lighttpd" +# server.tag = "lighttpd" #### accesslog module accesslog.filename = "/www/logs/access.log"