26 lines
683 B
Plaintext
26 lines
683 B
Plaintext
|
|
LoadModule dav_svn_module modules/mod_dav_svn.so
|
|
LoadModule authz_svn_module modules/mod_authz_svn.so
|
|
|
|
#
|
|
# Example configuration to enable HTTP access for a Subversion
|
|
# repository, "/home/svnroot". This repository must be readable
|
|
# and writable by the 'apache' user.
|
|
#
|
|
|
|
#<Location /svn/repos>
|
|
# DAV svn
|
|
# SVNPath /home/svnroot
|
|
#
|
|
# # Limit write permission to list of valid users.
|
|
# <LimitExcept GET PROPFIND OPTIONS REPORT>
|
|
# # Require SSL connection for password protection.
|
|
# # SSLRequireSSL
|
|
#
|
|
# AuthType Basic
|
|
# AuthName "Authorization Realm"
|
|
# AuthUserFile /path/to/passwdfile
|
|
# Require valid-user
|
|
# </LimitExcept>
|
|
#</Location>
|