2003-02-03 21:24:13 +01:00
|
|
|
===========================================================================
|
2007-12-13 21:03:36 +01:00
|
|
|
$NetBSD: MESSAGE,v 1.3 2007/12/13 20:03:36 epg Exp $
|
2003-02-03 21:24:13 +01:00
|
|
|
|
|
|
|
See ${PREFIX}/share/doc/subversion/INSTALL for details on making
|
|
|
|
a repository accessible via mod_dav_svn. Basically, you need
|
|
|
|
something like this in httpd.conf:
|
|
|
|
|
|
|
|
LoadModule dav_svn_module "lib/httpd/mod_dav_svn.so"
|
|
|
|
<Location /svn>
|
|
|
|
DAV svn
|
|
|
|
SVNPath "/path/to/repository"
|
2003-05-25 11:17:41 +02:00
|
|
|
AuthType Basic
|
|
|
|
AuthName "Subversion repository"
|
|
|
|
AuthUserFile "/path/to/passwd-file"
|
2007-12-13 21:03:36 +01:00
|
|
|
# Allow anonymous reads but require authentication for writes.
|
|
|
|
<LimitExcept GET HEAD OPTIONS PROPFIND REPORT TRACE>
|
2003-02-03 21:24:13 +01:00
|
|
|
Require valid-user
|
|
|
|
</LimitExcept>
|
|
|
|
</Location>
|
|
|
|
|
|
|
|
===========================================================================
|