[fix] adding + everywhere in Options for apache 2.4+ template
This commit is contained in:
parent
ec5fedc945
commit
b4c9cfc9cb
|
@ -11,7 +11,7 @@ AssignUserId www-data www-data
|
||||||
|
|
||||||
# Deny access to the root filesystem
|
# Deny access to the root filesystem
|
||||||
<Directory />
|
<Directory />
|
||||||
Options FollowSymLinks
|
Options +FollowSymLinks
|
||||||
AllowOverride None
|
AllowOverride None
|
||||||
Order allow,deny
|
Order allow,deny
|
||||||
Deny from all
|
Deny from all
|
||||||
|
@ -62,13 +62,13 @@ ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
|
||||||
|
|
||||||
<Directory /usr/share/phpmyadmin>
|
<Directory /usr/share/phpmyadmin>
|
||||||
AllowOverride AuthConfig Options FileInfo Limit Indexes
|
AllowOverride AuthConfig Options FileInfo Limit Indexes
|
||||||
Options Indexes Includes FollowSymLinks MultiViews
|
Options +Indexes +Includes +FollowSymLinks +MultiViews
|
||||||
Order allow,deny
|
Order allow,deny
|
||||||
Allow from all
|
Allow from all
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory /usr/share/squirrelmail>
|
<Directory /usr/share/squirrelmail>
|
||||||
AllowOverride AuthConfig Options FileInfo Limit Indexes
|
AllowOverride AuthConfig Options FileInfo Limit Indexes
|
||||||
Options Indexes Includes FollowSymLinks MultiViews
|
Options +Indexes +Includes +FollowSymLinks +MultiViews
|
||||||
Order allow,deny
|
Order allow,deny
|
||||||
Allow from all
|
Allow from all
|
||||||
</Directory>
|
</Directory>
|
||||||
|
|
Loading…
Reference in New Issue