From e3a27bec4e26f8f758c7b4cc7cf5244f95a9361d Mon Sep 17 00:00:00 2001 From: Jan Kneschke Date: Tue, 16 Aug 2005 15:13:44 +0000 Subject: [PATCH] added the event-handler note for macos x (fixes #70) git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@553 152afb58-edef-0310-8abb-c4023f1b3aa9 --- doc/lighttpd.conf | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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"