You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Stephane Bortzmeyer <bo...@generic-nic.net> on 2005/03/10 07:37:37 UTC

COPY of ... 502 Bad Gateway

My Subversion repository is hosted by an Apache 2 HTTP server, behind
an Apache 1 HTTP proxy.

All operations (add, commit, update, etc) seem fine but not "rename":

% svn rename registrehaitien.pdf internal/workshop/registrehaitien.pdf
A         internal/workshop/registrehaitien.pdf
D         registrehaitien.pdf
% svn commit -m 'Moved to the proper place'
Adding         internal/workshop/registrehaitien.pdf
svn: Commit failed (details follow):
svn: COPY of internal/workshop/registrehaitien.pdf: 502 Bad Gateway (https://svn.generic-nic.net)
%

And the Apache 1 proxy log is:

62.212.100.181 - - [10/Mar/2005:08:29:14 +0100] "COPY /!svn/bc/30/registrehaitien.pdf HTTP/1.1" 502 255 "-" "SVN/1.1.1 (r11581) neon/0.24.7" 0 svn.generic-nic.net

The Subversion server is 1.1.3, running on Debian "sarge".

If I bypass the proxy, by using the http://svn.generic-nic.net:8080/
URL, it works fine so there is clearly something wrong on the proxy.

Here is the proxy config:

<VirtualHost 192.134.7.250:443>
ServerName svn.generic-nic.net
SSLEnable
ProxyRequests Off
ProxyPass / http://svn.generic-nic.net:8080/
# CHanging the option ProxyPassReverse changes nothing
#ProxyPassReverse / http://svn.generic-nic.net:8080/
<Directory />
<Limit PROPFIND PUT DELETE PATCH PROPPATCH MKCOL COPY MOVE LOCK UNLOCK>
        Order deny,allow
        Allow from all
</Limit>
</Directory>
</VirtualHost>


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