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

Re: Authentication

From: Paul Puschmann <paul.puschmann_at_medcom-service.de>
Date: 2004-06-29 15:47:09 CEST

> How to use authentication in Tortoise svn?
> What i need to configure in httpd.conf?
Hi,

I you want to use Apache2 for network access of your repos, you can use
the usual Apache-methods for security.

e.g. you can use a passwordfile (htpasswd) and use it in the following way:

<Location /my_repo>
    DAV svn
    SVNPath /srv/svn/repos/my_repo/

# Limit write permission to list of valid users.
# <LimitExcept GET PROPFIND OPTIONS REPORT>
# Require SSL connection for password protection.
# SSLRequireSSL

       AuthType Basic
       AuthName "My Repository"
       AuthUserFile /srv/svn/passwordfile
       Require valid-user
# </LimitExcept>
</Location>

Perhaps you have to create an alias, too.

Kind regards,

Paul

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Tue Jun 29 15:53:29 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.