SVN - CENTOs 4.5 - Plesk 8.3
Posted: Sat Apr 05, 2008 2:15 pm
Hi All,
Been pulling my hair out for a day or so now. We working on getting our codebases in order. I'm attempting to get Subversion working on our CentOS 4.5 / Plesk 8.3 box.
Here is what we have installed:
I've followed Scott's Wiki entry - http://www.atomicorp.com/wiki/index.php/Subversion- and still no joy.
In trying to connect to the SVN repos via file:/// we get
I have created valid user/pass credentials. Apache has been configured to account for the vhost.conf file under the subdomain as per Scott's wiki entry.
Apache owns all the files in the /var/www/svn directories and I've even gone so far as to chmod -R 777 that entire tree in an effort to get it running.
Does anyone have any insight as to how to get this running? I'm at a loss at present (hence my de-lurk mode on the forum).
Appreciate any help / suggestions / etc.... Thanks.
Been pulling my hair out for a day or so now. We working on getting our codebases in order. I'm attempting to get Subversion working on our CentOS 4.5 / Plesk 8.3 box.
Here is what we have installed:
Code: Select all
httpd-2.0.52-32.3.ent.centos4
mod_dav_svn-1.4.6-0.1.el4.rf
subversion-1.4.6-0.1.el4.rf
In trying to connect to the SVN repos via file:/// we get
When hitting the subdomain at http://svn.domain.com we get the following:svn list http://svn.domain.com/repos
svn: PROPFIND request failed on '/repos'
svn: PROPFIND of '/repos': 403 Forbidden (http://svn.domain.com)
This is the contents of the vhost.conf file for subdomains/svn/confCould not open the requested SVN filesystem
Code: Select all
<Location /repos>
DAV svn
SVNParentPath /var/www/svn
#
# Limit write permission to list of valid users.
<LimitExcept GET PROPFIND OPTIONS REPORT>
# Require SSL connection for password protection.
# SSLRequireSSL
#
AuthType Basic
AuthName "authorization to svn.domain.com required"
AuthUserFile /var/www/passwd
Require valid-user
</LimitExcept>
</Location>
Apache owns all the files in the /var/www/svn directories and I've even gone so far as to chmod -R 777 that entire tree in an effort to get it running.
Does anyone have any insight as to how to get this running? I'm at a loss at present (hence my de-lurk mode on the forum).
Appreciate any help / suggestions / etc.... Thanks.