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

Multiple http virtual host access to a single repository

From: Damon Rand <Damon_at_cybermagic.co.nz>
Date: 2005-07-11 18:50:29 CEST

Hi,
  Am I going to get into trouble with the below config? For various reasons to do with our network infrastructure we wish to have an SSL and a nonSSL virtual host access the same SVNPath/repository.

Is this safe? Would I be better with BerkeleyDB or FSFS?

Regards,
Damon.

# http access to the repository
<VirtualHost *:80>

    ServerName svn.blah.org
    ServerAdmin drand@blah.org

    # HTML pages related to subversion
    DocumentRoot d:/svn/svn.intsec
    
    <Location /repos>
        DAV svn
        SVNPath d:/svn/testrepos

        <LimitExcept GET PROPFIND OPTIONS REPORT>
          Require valid-user
        </LimitExcept>
    
    </Location>

</VirtualHost>

# https access to the repository
<VirtualHost *:443>

    ServerName svn.blah.org
    ServerAdmin drand@blah.org

    # HTML pages related to subversion
    DocumentRoot d:/svn/svn.intsec
    
    SSLEngine on
    SSLProtocol all
    SSLCipherSuite LOW
    
    <Location /repos>
        DAV svn
        SVNPath d:/svn/testrepos

        <LimitExcept GET PROPFIND OPTIONS REPORT>
          Require valid-user
        </LimitExcept>
    
    </Location>

</VirtualHost>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Mon Jul 11 18:52:39 2005

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.