Hoperrprime:WebDAV

From Earlham CS Department
Revision as of 23:28, 14 January 2008 by Skylar (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
  1. Build Subversion with Apache support by adding the WITH_MOD_DAV_SVN=yes WITH_APACHE2_APR=yes options to the build.
  2. Make sure the Apache modules are loaded in httpd.conf:
LoadModule dav_svn_module     libexec/apache22/mod_dav_svn.so
LoadModule authz_svn_module   libexec/apache22/mod_authz_svn.so
  1. Create a Includes/svn.conf with
<IfModule dav_svn_module>
        <Location /svn>
                DAV svn
                SVNPath /cluster/svnroot
        </Location>
</IfModule>

<Location /detail/svnroot>
        Order allow,deny
        Allow from none
        Deny from all
</Location>