Skip to main content
We’ve updated our Terms of Service. A new AI Addendum clarifies how Stack Overflow utilizes AI interactions.
added result when using directly the svn client on the server itself
Source Link
user1473223
  • 31
  • 1
  • 1
  • 4

I try to setup subversion on an apache server. I followed this guide: [http://wiki.centos.org/HowTos/Subversion][1]

If I try to checkout afterwards with Tortoise SVN a project I get the following Error:

Unexpected HTTP status 405 'Method Not Allowed' on '/repos 

If I try to use the svn client on the linux server itself I get the follwing error:

svn: Server sent unexpected return value (405 Method Not Allowed) in response to OPTIONS request for 'https://server.ch/repos' 

My current configuration on the apache server look like this:

LoadModule dav_svn_module modules/mod_dav_svn.so LoadModule authz_svn_module modules/mod_authz_svn.so <VirtualHost *:443> ... <Directory "/var/www/svn/"> Order allow,deny Allow from all AllowOverride all AuthType Basic AuthName "Authorization Realm" AuthUserFile /etc/subversion/svn-auth-conf Require valid-user </Directory> <Location /repos> DAV svn SVNParentPath /var/www/svn/repos SVNListParentPath on SSLRequireSSL AuthType Basic AuthName "Authorization Realm" AuthUserFile /etc/subversion/svn-auth-conf Require valid-user </Location> </VirtualHost> 

Thank you for any suggestion or help in advance

regards Mark

I try to setup subversion on an apache server. I followed this guide: [http://wiki.centos.org/HowTos/Subversion][1]

If I try to checkout afterwards with Tortoise SVN a project I get the following Error:

Unexpected HTTP status 405 'Method Not Allowed' on '/repos 

My current configuration on the apache server look like this:

LoadModule dav_svn_module modules/mod_dav_svn.so LoadModule authz_svn_module modules/mod_authz_svn.so <VirtualHost *:443> ... <Directory "/var/www/svn/"> Order allow,deny Allow from all AllowOverride all AuthType Basic AuthName "Authorization Realm" AuthUserFile /etc/subversion/svn-auth-conf Require valid-user </Directory> <Location /repos> DAV svn SVNParentPath /var/www/svn/repos SVNListParentPath on SSLRequireSSL AuthType Basic AuthName "Authorization Realm" AuthUserFile /etc/subversion/svn-auth-conf Require valid-user </Location> </VirtualHost> 

Thank you for any suggestion or help in advance

regards Mark

I try to setup subversion on an apache server. I followed this guide: [http://wiki.centos.org/HowTos/Subversion][1]

If I try to checkout afterwards with Tortoise SVN a project I get the following Error:

Unexpected HTTP status 405 'Method Not Allowed' on '/repos 

If I try to use the svn client on the linux server itself I get the follwing error:

svn: Server sent unexpected return value (405 Method Not Allowed) in response to OPTIONS request for 'https://server.ch/repos' 

My current configuration on the apache server look like this:

LoadModule dav_svn_module modules/mod_dav_svn.so LoadModule authz_svn_module modules/mod_authz_svn.so <VirtualHost *:443> ... <Directory "/var/www/svn/"> Order allow,deny Allow from all AllowOverride all AuthType Basic AuthName "Authorization Realm" AuthUserFile /etc/subversion/svn-auth-conf Require valid-user </Directory> <Location /repos> DAV svn SVNParentPath /var/www/svn/repos SVNListParentPath on SSLRequireSSL AuthType Basic AuthName "Authorization Realm" AuthUserFile /etc/subversion/svn-auth-conf Require valid-user </Location> </VirtualHost> 

Thank you for any suggestion or help in advance

regards Mark

Source Link
user1473223
  • 31
  • 1
  • 1
  • 4

subversion on apache - checkout failed: 405 Method Not Allowed

I try to setup subversion on an apache server. I followed this guide: [http://wiki.centos.org/HowTos/Subversion][1]

If I try to checkout afterwards with Tortoise SVN a project I get the following Error:

Unexpected HTTP status 405 'Method Not Allowed' on '/repos 

My current configuration on the apache server look like this:

LoadModule dav_svn_module modules/mod_dav_svn.so LoadModule authz_svn_module modules/mod_authz_svn.so <VirtualHost *:443> ... <Directory "/var/www/svn/"> Order allow,deny Allow from all AllowOverride all AuthType Basic AuthName "Authorization Realm" AuthUserFile /etc/subversion/svn-auth-conf Require valid-user </Directory> <Location /repos> DAV svn SVNParentPath /var/www/svn/repos SVNListParentPath on SSLRequireSSL AuthType Basic AuthName "Authorization Realm" AuthUserFile /etc/subversion/svn-auth-conf Require valid-user </Location> </VirtualHost> 

Thank you for any suggestion or help in advance

regards Mark