updated the sample apache configuration file

This commit is contained in:
hyung-hwan 2010-07-26 14:02:17 +00:00
parent 0efa872e3a
commit 4d16600d40

View File

@ -8,6 +8,10 @@
DAV svn DAV svn
SVNParentPath "@DEPOTDIR@/svnrepo" SVNParentPath "@DEPOTDIR@/svnrepo"
Order deny,allow
#Deny from all
#Satisfy any
# Uncomment SSLRequireSSL below to disallow non-SSL access. # Uncomment SSLRequireSSL below to disallow non-SSL access.
# Note that SSL must be enabled site-wide to use it. # Note that SSL must be enabled site-wide to use it.
# SSLRequireSSL # SSLRequireSSL
@ -39,7 +43,18 @@
AuthLDAPBindDN cn=admin,dc=sample,dc=net AuthLDAPBindDN cn=admin,dc=sample,dc=net
AuthLDAPBindPassword xxxxxxx AuthLDAPBindPassword xxxxxxx
Require ldap-group cn=users,ou=groups,dc=sample,dc=net #Require ldap-group cn=users,ou=groups,dc=sample,dc=net
# allow anynymous for viewing and checking out
<Limit GET HEAD OPTIONS REPORT PROPFIND>
Allow from all
#Satisfy any
</Limit>
# require authentication for other operations
<LimitExcept GET HEAD OPTIONS REPORT PROPFIND>
Require ldap-group cn=coders,ou=groups,dc=sample,dc=net
</LimitExcept>
# #
# Apache version 2.0.41 # Apache version 2.0.41