summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2020-02-07 00:03:30 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2020-07-08 19:54:29 -0400
commite11f72b11d2e68c4f92948990f006b71001ed258 (patch)
tree78f18e521b05e8c4d3bff0b498431f2dd5075fba /doc
parentbc89b98acb9032759cf2771b050c6e247243d789 (diff)
downloadlighttpd-git-e11f72b11d2e68c4f92948990f006b71001ed258.tar.gz
[doc] lighttpd.conf: lighttpd choose event-handler
comment out server.event-handler in sample lighttpd.conf so that lighttpd chooses the recommended event-handler for each OS
Diffstat (limited to 'doc')
-rw-r--r--doc/config/lighttpd.conf15
1 files changed, 8 insertions, 7 deletions
diff --git a/doc/config/lighttpd.conf b/doc/config/lighttpd.conf
index 3e687c21..56ecc3c6 100644
--- a/doc/config/lighttpd.conf
+++ b/doc/config/lighttpd.conf
@@ -176,15 +176,16 @@ include "conf.d/debug.conf"
##
## set the event-handler (read the performance section in the manual)
##
-## possible options on linux are:
+## The recommended server.event-handler is chosen for each OS, if available.
##
-## select
-## poll
-## linux-sysepoll
+## epoll (recommended on Linux)
+## kqueue (recommended on *BSD and MacOS X)
+## solaris-devpoll (recommended on Solaris)
+## poll (recommended if none of above are available)
+## select (not recommended)
+## libev (not recommended)
##
-## linux-sysepoll is recommended on kernel 2.6.
-##
-server.event-handler = "linux-sysepoll"
+#server.event-handler = "linux-sysepoll"
##
## The basic network interface for all platforms at the syscalls read()