Subversion Repositories configs

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
192 - 1
# phpMyAdmin - Web based MySQL browser written in php
2
#
3
# Allows only localhost by default
4
#
5
# But allowing phpMyAdmin to anyone other than localhost should be considered
6
# dangerous unless properly secured by SSL
7
 
8
Alias /phpMyAdmin /usr/share/phpmyadmin
9
Alias /phpmyadmin /usr/share/phpmyadmin
10
 
11
<Directory /usr/share/phpmyadmin/>
12
   <IfModule mod_authz_core.c>
13
     # Apache 2.4
14
    <RequireAny>
15
       Require ip 127.0.0.1
16
       Require ip ::1
17
       Require ip 10.192.25
18
    </RequireAny>
19
   </IfModule>
20
</Directory>