|
|
|
@ -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", |
|
|
|
|
) |
|
|
|
|