diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-09-15 17:28:07 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-09-15 17:28:07 -0500 |
commit | 5c7aaf786217ec7895bcaf6d5445b31204bd49c6 (patch) | |
tree | 5a74e6192571647f63ef87e008e0781291781d8a /modules/apache/local.conf | |
parent | 27e9c0165c6178a3b10cc57da604c0c9a14602e1 (diff) | |
download | nixos-config-5c7aaf786217ec7895bcaf6d5445b31204bd49c6.tar.gz nixos-config-5c7aaf786217ec7895bcaf6d5445b31204bd49c6.zip |
modules/apache/local: Enable following symlinks
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 c430a50..d6dbfda 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 + Options MultiViews FollowSymlinks AllowOverride All Require all granted </Directory> <Directory "/home/*/www"> - Options MultiViews + Options MultiViews FollowSymlinks AllowOverride All Require all granted </Directory> |