diff options
Diffstat (limited to 'modules/apache')
-rw-r--r-- | modules/apache/default.nix | 1 | ||||
-rw-r--r-- | modules/apache/local.nix | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/modules/apache/default.nix b/modules/apache/default.nix index d581aca..9d4579c 100644 --- a/modules/apache/default.nix +++ b/modules/apache/default.nix @@ -23,6 +23,7 @@ in enable = true; logPerVirtualHost = false; logDir = "/var/log/apache2"; + extraModules = ["userdir"]; virtualHosts = mergeAttrsList (map (name: { "${name}" = { extraConfig = readFile ./${name}.conf; } diff --git a/modules/apache/local.nix b/modules/apache/local.nix index 89c07f5..3648fe1 100644 --- a/modules/apache/local.nix +++ b/modules/apache/local.nix @@ -2,5 +2,4 @@ { hostName = config.networking.hostName; - extraModules = ["userdir"]; } |