blob: 366544a07407336bcf4d360dadec969931cc8b82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
Alias /phpmyadmin "/usr/share/webapps/phpmyadmin"
<Directory "/usr/share/webapps/phpmyadmin">
AddDefaultCharset UTF-8
AllowOverride All
Options FollowSymlinks
<IfModule mod_authz_core.c>
Require all granted
</IfModule>
</Directory>
<Directory "/usr/share/webapps/phpmyadmin/libraries">
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
</Directory>
<Directory "/usr/share/webapps/phpmyadmin/templates">
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
</Directory>
|