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

[svn - reverse proxy ]- 405 Method Not Allowed

From: Amit Kumar Singh <amitsingh_at_cse.iitb.ac.in>
Date: Wed, 25 Jun 2008 01:56:14 +0530 (IST)

Configuration
-----------------
I have two PCs PC1 and PC2 with install of svn and apache2

PC1 has svn server running on it, via apache2 only https (ssl)
Some junk svn repository created on PC1

PC2 has apache2 running on it, with mod-proxy
Pretend PC2 is on the external web, PC1 is inside the firewall
PC2 has to ProxyPass and ProxyPassReverse only in SSL mode
External URL https://PC2/PC1/ should proxy to the SVN repo on PC1
-----------------
The problem: Currently, I can access svn over https directly from
PC1.(from browser and from svn list command)

but from PC2 (only broswer acces to PC1 svn content is possible)
From command line ( svn list https://PC1/svn/REPOSITORY ) i get following
error
svn: PROPFIND request failed on ‘/svn/REPOSITORY’
svn: PROPFIND of ‘/svn/REPOSITORY’: 405 Method Not Allowed (https://pc2)

-----------------
in config file /etc/apache2/sites-available/myconfig (included via
a2ensite command)

ProxyPassReverse /svn/REPOSITORY/ https://PC1/svn/REPOSITORY/
ProxyPass svn/REPOSITORY/ https://PC1/svn/REPOSITORY/
 <Location /svn/REPOSITORY/ >
                <Limit OPTIONS PROPFIND GET REPORT MKACTIVITY PROPPATCH
PUT CHECKOUT
MKCOL MOVE COPY DELETE LOCK UNLOCK MERGE>
                  Order Deny,Allow
                  Allow from all
                  Satisfy Any
                </Limit
</Location>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: users-help_at_subversion.tigris.org
Received on 2008-06-25 23:42:47 CEST

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.