diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-09-15 17:53:14 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-09-15 17:53:14 -0500 |
commit | e0645b287a492f41161f16ab87760c6ad734b2c3 (patch) | |
tree | 98c33e32352fbf03976f81c9644c3c6d59914995 | |
parent | c51ae5725ff9a46474b0facf159b3754eb3eccea (diff) | |
download | nixos-config-e0645b287a492f41161f16ab87760c6ad734b2c3.tar.gz nixos-config-e0645b287a492f41161f16ab87760c6ad734b2c3.zip |
Fix previous commit
-rw-r--r-- | modules/apache/local.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/apache/local.conf b/modules/apache/local.conf index d1e2a7a..2107088 100644 --- a/modules/apache/local.conf +++ b/modules/apache/local.conf @@ -2,13 +2,13 @@ UserDir "/var/www" DirectoryIndex _.html _.txt <Directory "/var/www"> - Options MultiViews FollowSymlinks Index + Options MultiViews FollowSymlinks Indexes AllowOverride All Require all granted </Directory> <Directory "/home/*/www"> - Options MultiViews FollowSymlinks Index + Options MultiViews FollowSymlinks Indexes AllowOverride All Require all granted </Directory> |