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

FW: Re: Newbie: Unable to Create Layout and Import InitialData(S ubversion & TortoiseSVN)

From: Crucius, Wesley <WCrucius_at_sandc.com>
Date: 2004-04-01 21:06:13 CEST

Hmm, this raises a question for me. Is it "allright" to have settings
like this in my httpd.conf?

# Subversion Repository Location setup
<Location /svn>
    DAV svn

# Repository location
    SVNParentPath svn

# Repository Authentication Mechanism
    AuthType Basic
    AuthName "Subversion Repository"
    AuthUserFile svn/svn-auth-file

# Repository Authorization Policy definition
    AuthzSVNAccessFile svn/svn-access-policies
    Satisy Any
    Require valid-user

</Location>

So, I have the users and policies files IN the SVNParentPath
directory... It works, but does it present any kind of security risk?

Also, Apache doesn't seem to like the following absolute path.

  SVNParentPath //D:/SVNRepos

I'm sure it's in the apache docs somewhere, but I can't find it, so if
someone could please enlighten me, I'd be tickled...

Thanks,
Wes

-----Original Message-----
From: Ben Collins-Sussman [mailto:sussman@collab.net]
Sent: Thursday, April 01, 2004 12:51 PM
To: Vera Odessa Newman
Cc: users@subversion.tigris.org
Subject: Re: Newbie: Unable to Create Layout and Import
InitialData(Subversion & TortoiseSVN)

On Thu, 2004-04-01 at 12:29, Vera Odessa Newman wrote:

> Should the path of SVN/repos directory be outside the Apache
> htdocs, in order to be accessed..or am i missing something here in
> coinfiguration of the SVNParentPath??

Yes. Separate the two universes completely. No overlaps in the
httpd.conf file, or on disk.

Universe #1:

DocumentRoot "E:/ApacheGroup/Apache2/htdocs"

<Directory "E:/ApacheGroup/Apache2/htdocs">
  ...whatever options you want regarding "real" files </Directory>

Universe #2:

<Location /svn>
DAV svn
SVNParentPath E:\SVN-Repositories\
AuthType Basic
AuthName "Subversion repositories"
AuthUserFile passwd
#AuthzSVNAccessFile svnaccessfile
Require valid-user
</Location>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Thu Apr 1 21:07:01 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.