]> git.pld-linux.org Git - packages/phpMyAdmin.git/blob - apache.conf
- updated to 4.8.5 (solves CVE-2019-6798, CVE-2019-6799)
[packages/phpMyAdmin.git] / apache.conf
1 Alias /myadmin /usr/share/phpMyAdmin
2 <Directory "/usr/share/phpMyAdmin">
3         Options FollowSymLinks
4         AllowOverride None
5
6         # Apache 2.x
7         <IfModule !mod_authz_core.c>
8                 Order allow,deny
9                 Allow from all
10         </IfModule>
11         # Apache 2.4
12         <IfModule mod_authz_core.c>
13                 Require all granted
14         </IfModule>
15
16         # uncomment if using apache-mod_php
17         #php_admin_value open_basedir "/etc/webapps/phpMyAdmin/:/usr/share/phpMyAdmin/:/usr/share/phpMyAdmin/css/..:/tmp"
18 </Directory>
This page took 0.023685 seconds and 3 git commands to generate.