You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
472 B
19 lines
472 B
LoadModule dav_svn_module /usr/lib/apache2/mod_dav_svn.so |
|
LoadModule authz_svn_module /usr/lib/apache2/mod_authz_svn.so |
|
|
|
<VirtualHost *:8000> |
|
<Location /> |
|
DAV svn |
|
SVNParentPath /data |
|
SVNListParentPath On |
|
|
|
SVNAutoversioning on |
|
ModMimeUsePathInfo on |
|
|
|
AuthType Basic |
|
AuthName "svn" |
|
AuthUserFile /data/.htpasswd |
|
AuthzSVNAccessFile /data/authz |
|
Require valid-user |
|
</Location> |
|
</VirtualHost> |