1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
| <VirtualHost *>
ServerAdmin ****@****.org
ServerName ****.***.com
DocumentRoot /var/******
<Directory />
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
ServerSignature On
<Location />
DAV svn
SVNPath /var/*****
# # htpasswd2 -m /etc/apache2/dav_svn.passwd dwhedon
AuthType Basic
AuthName "***** Subversion Repository"
AuthUserFile /etc/apache2/dav_svn.passwd
<LimitExcept *>
Require valid-user
</LimitExcept>
</Location>
</VirtualHost> |
Partager