diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-09-15 17:49:31 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-09-15 17:49:31 -0500 |
commit | c51ae5725ff9a46474b0facf159b3754eb3eccea (patch) | |
tree | 742b2c6629c82458302a3693e67350b757737bd6 /modules/apache/local.conf | |
parent | 5c7aaf786217ec7895bcaf6d5445b31204bd49c6 (diff) | |
download | nixos-config-c51ae5725ff9a46474b0facf159b3754eb3eccea.tar.gz nixos-config-c51ae5725ff9a46474b0facf159b3754eb3eccea.zip |
modules/apache/local: Enable auto-indexing
Diffstat (limited to 'modules/apache/local.conf')
-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 d6dbfda..d1e2a7a 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 + Options MultiViews FollowSymlinks Index AllowOverride All Require all granted </Directory> <Directory "/home/*/www"> - Options MultiViews FollowSymlinks + Options MultiViews FollowSymlinks Index AllowOverride All Require all granted </Directory> |