summary refs log tree commit diff
path: root/nixos/modules/services/web-servers
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2017-07-15 13:55:49 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2017-07-29 14:24:40 +0200
commitb339e6e13fb0869f5ac5ba13e8c38ab535549231 (patch)
tree361726a46f7f707f940447fa7498cf528ef4f66a /nixos/modules/services/web-servers
parenta99c2556f437425256ca85c22ce4a1f987e12878 (diff)
downloadnixlib-b339e6e13fb0869f5ac5ba13e8c38ab535549231.tar
nixlib-b339e6e13fb0869f5ac5ba13e8c38ab535549231.tar.gz
nixlib-b339e6e13fb0869f5ac5ba13e8c38ab535549231.tar.bz2
nixlib-b339e6e13fb0869f5ac5ba13e8c38ab535549231.tar.lz
nixlib-b339e6e13fb0869f5ac5ba13e8c38ab535549231.tar.xz
nixlib-b339e6e13fb0869f5ac5ba13e8c38ab535549231.tar.zst
nixlib-b339e6e13fb0869f5ac5ba13e8c38ab535549231.zip
nixos/lighttpd: update list of allowed module names
* mod_dirlisting is auto-loaded by lighttpd and should not be explicitly
  loaded in the configuration file.
* The rest comes from looking at "ls -1 $lighttpd/lib/*.so" when
  lighttpd is built with "enableMagnet" and "enableMysql".
Diffstat (limited to 'nixos/modules/services/web-servers')
-rw-r--r--nixos/modules/services/web-servers/lighttpd/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/nixos/modules/services/web-servers/lighttpd/default.nix b/nixos/modules/services/web-servers/lighttpd/default.nix
index 8c3f7b219acf..151b5ee15203 100644
--- a/nixos/modules/services/web-servers/lighttpd/default.nix
+++ b/nixos/modules/services/web-servers/lighttpd/default.nix
@@ -37,8 +37,10 @@ let
     "mod_rrdtool"
     "mod_accesslog"
     # Remaining list of modules, order assumed to be unimportant.
+    "mod_authn_file"
+    "mod_authn_mysql"
     "mod_cml"
-    "mod_dirlisting"
+    "mod_deflate"
     "mod_evasive"
     "mod_extforward"
     "mod_flv_streaming"
@@ -47,6 +49,7 @@ let
     "mod_scgi"
     "mod_setenv"
     "mod_trigger_b4_dl"
+    "mod_uploadprogress"
     "mod_webdav"
   ];