a06f0e0769
- Add apache configuration file fragment - Use CONF_FILES for config.php and newly added apache file fragment - Change permissions on installed config.php to www:wheel 0600 as it can contain sensitive information in some installations - Update MESSAGE pointing to new files installed
20 lines
418 B
Text
20 lines
418 B
Text
# $NetBSD: phpldapadmin.conf,v 1.1 2005/05/23 22:01:42 adrianp Exp $
|
|
#
|
|
# phpLDAPAdmin configuration file fragment for Apache
|
|
|
|
<IfModule mod_alias.c>
|
|
Alias /ldapadmin/ "@LDAPADMINDIR@/"
|
|
</IfModule>
|
|
|
|
<Directory "@LDAPADMINDIR@">
|
|
Options Indexes
|
|
AllowOverride None
|
|
Order allow,deny
|
|
Allow from all
|
|
</Directory>
|
|
|
|
# strongly recommended
|
|
#
|
|
<Location /ldapadmin >
|
|
Require user adminaccount
|
|
</Location>
|