phpldapadmin.conf 620 B

1234567891011121314151617181920212223242526
  1. # phpldapadmin - Web based OpenLDAP 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. Alias /phpldapadmin /usr/share/phpldapadmin
  8. <Directory /usr/share/phpldapadmin/>
  9. Order Deny,Allow
  10. Deny from All
  11. Allow from 127.0.0.1
  12. Allow from ::1
  13. </Directory>
  14. # These directories do not require access over HTTP - taken from the original
  15. # phpmyadmin upstream tarball
  16. #
  17. <Directory /usr/share/phpldapadmin/lib/>
  18. Order Deny,Allow
  19. Deny from All
  20. Allow from None
  21. </Directory>