blob: b4a628e5f989b40eb0ae65811fde1d30fed214e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: phpmyadmin.conf,v 1.2 2004/08/07 11:31:15 adrianp Exp $
#
# phpmyadmin configuration file fragment for Apache
<IfModule mod_alias.c>
Alias /phpmyadmin/ "@PMDIR@/"
</IfModule>
<Directory "@PMDIR@">
Options Indexes
AllowOverride None
Order allow,deny
Allow from all
</Directory>
#
# For security, don't serve pages from the phpmyadmin scripts directories.
#
<Directory "@PMDIR@/scripts">
Order deny,allow
Deny from all
</Directory>
|