[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn via httpd

From: Kenneth Porter <shiva_at_sewingwitch.com>
Date: 2004-08-06 03:30:27 CEST

--On Friday, July 30, 2004 7:08 AM +0100 Martin Tomes <lists@tomes.org>
wrote:

> This spells out how to get going on Fedora Core 2:
>
> http://www.subversionary.org/subversionary.cgi/ServerSetupFedoraCore2

Good document. I also use the SSL stuff in the sample config file so that
the repository can only be accessed off-site over an encrypted SSL tunnel
(ie. https).

My finished /etc/httpd/conf.d/subversion.conf looks like this:

LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so

<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
</Location>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Fri Aug 6 03:30:52 2004

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.