I have installed subversion on an internal Apache
server, but want the user to access the subversion
thru the external apache server. following is the
configuration for both the servers(bot are on Apache
2.0)
Internal Apache (server name = squid)
================
<VirtualHost _default_:8081>
<Location /repos>
DAV svn
SVNParentPath /home/svn/repos
Order Deny,Allow
AuthType Basic
AuthName "Subversion Reporitory"
AuthUserFile /home/svn/svn_auth
# Access Control Policy
AuthzSVNAccessFile /home/svn/ACP
</Location>
</VirtualHost>
External Apache(server name=octopus)
=================
ProxyRequests off
<Location /svn>
ProxyPass http://squid:8081/repos
ProxyPassReverse http://squid:8081/repos
</Location>
when I run the svn client
svn checkout http://octopus/svn/temp/trunk
('temp' being the project name)
I get the following error
svn: PROPFIND request failed on
'/repos/temp/!svn/vcc/default'
svn: PROPFIND of '/repos/temp/!svn/vcc/default': 405
Method Not Allowed (http://octopus)
Anybody, who can help me on this, will be a greatly
appreciated.
-Saji
__________________________________
Do you Yahoo!?
Yahoo! Mail - Easier than ever with enhanced search. Learn more.
http://info.mail.yahoo.com/mail_250
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Mon Feb 7 23:09:17 2005