suversion server howto

Kenneth Porter shiva at sewingwitch.com
Wed Jan 18 05:19:52 UTC 2006


On Tuesday, January 17, 2006 5:03 PM +0100 Guido Leisker 
<lists.gl at guido-leisker.de> wrote:

> Is there i good and easy :) tutoril how to set up a svn server using
> apache?

yum install mod_dav_svn

Then edit /etc/httpd/conf.d/subversion.conf, using the commented-out 
example there.

Here's what I have:

<Location /repos>
        DAV svn
        SVNParentPath /srv/svn
        # Require SSL connection for password protection.
        SSLRequireSSL
        AuthType Basic
        AuthName "Subversion repository"
        AuthUserFile /var/www/passwd/svn
        Require valid-user
        SVNIndexXSLT "/Subversion/svnindex.xsl"
</Location>

Make sure that all files under /srv/svn are owned by user "apache".

You'll want to join the subversion-user mailing list.




More information about the fedora-list mailing list