summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2020-05-31 17:24:43 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2020-07-08 22:51:31 -0400
commit9570cc2f5c97aba2e4188f0d4c7cf2e89d0edae4 (patch)
tree491ffa171b3ddb530e101a5363cfbf3f414570ac /doc
parent7b9230ee5138db3bc127e3199d418c88d8e50346 (diff)
downloadlighttpd-git-9570cc2f5c97aba2e4188f0d4c7cf2e89d0edae4.tar.gz
[doc] update comments in doc/config/modules.conf
Diffstat (limited to 'doc')
-rw-r--r--doc/config/modules.conf19
1 files changed, 9 insertions, 10 deletions
diff --git a/doc/config/modules.conf b/doc/config/modules.conf
index 1e0d83f5..34792adf 100644
--- a/doc/config/modules.conf
+++ b/doc/config/modules.conf
@@ -3,17 +3,14 @@
## Modules to load
## -----------------
##
-## at least mod_access and mod_accesslog should be loaded
-## all other module should only be loaded if really neccesary
+## Load only the modules needed in order to keep things simple.
##
-## - saves some time
-## - saves memory
+## lighttpd automatically adds the following default modules
+## to server.modules, if not explicitly listed in server.modules:
+## "mod_indexfile", "mod_dirlisting", "mod_staticfile"
##
-## the default module set contains:
-##
-## "mod_indexfile", "mod_dirlisting", "mod_staticfile"
-##
-## you dont have to include those modules in your list
+## You may disable automatic loading of default modules by setting
+## server.compat-module-load = "disable"
##
## Modules, which are pulled in via conf.d/*.conf
##
@@ -44,6 +41,9 @@
## and which, in turn, should be listed before dynamic handlers
## (e.g. mod_cgi, mod_fastcgi, mod_proxy, mod_scgi, ...)
##
+## DO NOT alphabetize modules.
+## Alphabetizing may break expected functionality. See explanation above.
+##
server.modules = (
"mod_access",
@@ -52,7 +52,6 @@ server.modules = (
# "mod_authn_file",
# "mod_evasive",
# "mod_setenv",
-# "mod_usertrack",
# "mod_redirect",
# "mod_rewrite",
)