45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
# Example configuration for a subversion repository
|
|
# see /usr/share/doc/packages/subversion for the full documentation
|
|
#
|
|
|
|
<IfModule mod_dav_svn.c>
|
|
|
|
##
|
|
## project related HTML files
|
|
##
|
|
#<IfModule mod_alias.c>
|
|
#Alias /repos /srv/svn/html
|
|
#</IfModule>
|
|
#<Directory /srv/svn/html>
|
|
# Options +Indexes +Multiviews -FollowSymLinks
|
|
# IndexOptions FancyIndexing \
|
|
# ScanHTMLTitles \
|
|
# NameWidth=* \
|
|
# DescriptionWidth=* \
|
|
# SuppressLastModified \
|
|
# SuppressSize
|
|
#
|
|
# order allow,deny
|
|
# allow from all
|
|
#</Directory>
|
|
|
|
|
|
|
|
#<Location /repos/myproject1>
|
|
# DAV svn
|
|
# SVNPath /srv/svn/repos/myproject1
|
|
|
|
# # 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 /srv/svn/user_access/myproject1_passwdfile
|
|
# Require valid-user
|
|
# </LimitExcept>
|
|
#</Location>
|
|
|
|
</IfModule>
|