freebsd-ports/databases/phpmyadmin/files/pkg-message.in
Pav Lucistnik 14dd14b714 - Fix syntax error in pkg-message's Apache configuration example
PR:		ports/98045
Submitted by:	Brian Gourlie <bgourlie@gmail.com>
Approved by:	maintainer
2006-05-28 15:02:02 +00:00

21 lines
453 B
Text

%%PKGNAME%% has been installed into:
%%PREFIX%%/%%MYADMDIR%%
Please edit config.inc.php to suit your needs.
To make phpMyAdmin available through your web site, I suggest
that you add something like the following to httpd.conf:
Alias /phpmyadmin/ "%%PREFIX%%/%%MYADMDIR%%/"
<Directory "%%PREFIX%%/%%MYADMDIR%%/">
Options none
AllowOverride Limit
Order Deny,Allow
Deny from all
Allow from 127.0.0.1 .example.com
</Directory>