diff options
Diffstat (limited to 'modules/apache')
-rw-r--r-- | modules/apache/local.conf | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/modules/apache/local.conf b/modules/apache/local.conf index 7507799..c430a50 100644 --- a/modules/apache/local.conf +++ b/modules/apache/local.conf @@ -1,8 +1,14 @@ UserDir "/var/www" DirectoryIndex _.html _.txt +<Directory "/var/www"> + Options MultiViews + AllowOverride All + Require all granted +</Directory> + <Directory "/home/*/www"> - Options MultiViews ExecCGI + Options MultiViews AllowOverride All Require all granted </Directory> |