26 lines
620 B
Plaintext
26 lines
620 B
Plaintext
# phpldapadmin - Web based OpenLDAP browser written in php
|
|
#
|
|
# Allows only localhost by default
|
|
#
|
|
# But allowing phpmyadmin to anyone other than localhost should be considered
|
|
# dangerous unless properly secured by SSL
|
|
|
|
Alias /phpldapadmin /usr/share/phpldapadmin
|
|
|
|
<Directory /usr/share/phpldapadmin/>
|
|
Order Deny,Allow
|
|
Deny from All
|
|
Allow from 127.0.0.1
|
|
Allow from ::1
|
|
</Directory>
|
|
|
|
# These directories do not require access over HTTP - taken from the original
|
|
# phpmyadmin upstream tarball
|
|
#
|
|
<Directory /usr/share/phpldapadmin/lib/>
|
|
Order Deny,Allow
|
|
Deny from All
|
|
Allow from None
|
|
</Directory>
|
|
|