On Tuesday, January 17, 2006 5:03 PM +0100 Guido Leisker
<lists.gl@xxxxxxxxxxxxxxxx> 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.