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

Reverse Proxy

From: Stephen Nelson-Smith <sanelson_at_gmail.com>
Date: 2007-11-27 12:06:10 CET

Hello,

I've got a single front-end webserver which serves normal web content,
configured as a reverse proxy so /svn traffic is handed off to a
different machine. The proxy server is running 1.3.34 and has the
following config:

ProxyPass /svn http://svn.mydomain.com
ProxyPassReverse /svn http://svn.mydomain.com

The svn server itself has a generic dav_svn setup:

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

<Location /repos>
        DAV svn
        SVNPath /var/www/svn/repos
        AuthType Basic
        AuthName "Subversion repos"
        AuthUserFile /etc/svn-auth-conf
        Require valid-user
</Location>

From my workstation, I can browse to front.web.server/svn/repos and
see the repo, but I can't do any subversion tasks:

svn co http://10.0.0.100/svn/repos test
Authentication realm: <http://10.0.0.100:80> Subversion repos
Password for 'stephen':
svn: PROPFIND request failed on '/repos/!svn/vcc/default'
svn: '/repos/!svn/vcc/default' path not found

svn import Desktop http://10.0.0.100/svn/repos -m "test"
Authentication realm: <http://10.0.0.100:80> Subversion repos
Password for 'stephen':
svn: PROPFIND request failed on '/svn'
svn: PROPFIND of '/svn': 405 Method Not Allowed (http://10.0.0.100)

What do I need to do to make this possible?

S.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Tue Nov 27 12:56:45 2007

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.