• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

Subversion configuration

L

liquorvicar

Guest
I'm struggling to get svn configured on our Plesk server (7.5.4 on RHEL3). I've managed to get it installed and playing along with apache (if I comment out the ServerTokens directive I can see DAV and SVN in the response headers). I've moved on to configuring the vhost. I can access my repos from the commandline but I am struggling to access them remotely via SSL. Here's my vhost_ssl.conf
<Location /svn>
DAV svn
SVNParentPath /home/httpd/vhosts/domain.com/svn

AuthzSVNAccessFile /home/httpd/vhosts/domain.com/svnconf/access

# only authenticated users may access the repository
Require valid-user

AuthName "SVN"
AuthType Basic
AuthMySQLHost localhost
AuthMySQLDB db_name
AuthMySQLUserTable db_table
AuthMySQLUser db_user
AuthMySQLPassword passwd
AuthMySQLGroupField user_group
</Location>
When I try and checkout a repos I get
PROPFIND request failed on '/svn/repos'
PROPFIND of '/svn/repos': 405 Method Not Allowed (https://www.domain.com)

Has anyone got any ideas?
 
Hey Atomic,

Thanks for replying. I just managed to figure it out - I had changed the IP of the vhost but the DNS hadn't propagated so it was still trying to connect to the old IP.

All working now.
Ta
 
mod_auth_mysql

FWIW to get SVN working with mod_auth_mysql I had to recompile mod_auth_mysql. The RHEL3 rpm was compiled against an older version of libmysqlclient than PHP and this caused odd problems iwith some PHP scripts.
 
Back
Top