summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJan Kneschke <jan@kneschke.de>2005-08-16 15:13:44 +0000
committerJan Kneschke <jan@kneschke.de>2005-08-16 15:13:44 +0000
commit870f7ec1eb26eccc69a26a314badf6f279037b2e (patch)
tree5d7b6ea7ce77b5be2983081837a9b3af33e312c9 /doc
parent5ea268ac94483f1ef89f2195cf89c208f91c13eb (diff)
downloadlighttpd-git-870f7ec1eb26eccc69a26a314badf6f279037b2e.tar.gz
added the event-handler note for macos x (fixes #70)
git-svn-id: svn+ssh://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@553 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'doc')
-rw-r--r--doc/lighttpd.conf7
1 files 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"