• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

Subersion under Plesk 9.3

BRAHM

Basic Pleskian
hi guy,

I am under plesk 9.3 at 1and1 data center and I am trying to instal subversion

I have just followed the steps below:

1) yum install subversion mod_dav_svn

2) svnadmin create MyProjet

3) chown -R apache.apache /var/www/vhosts/mydomain.com/httpdocs/svn/MyProject

4) I put the info below in i /var/www/vhosts/mydomain.com/vhost.conf

<Location /repos>
DAV svn
SVNParentPath /var/www/vhosts/mydomain.com/httpdocs/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 Realm"
AuthUserFile /var/www/vhosts/mydomain.com/httpdocs/svn/passwd
Require valid-user
</LimitExcept>
</Location>

5)I run these too:

/usr/local/psa/admin/sbin/websrvmng -u --vhost-name=mydomain.com

/usr/local/psa/admin/sbin/websrvmng -a

/etc/init.d/httpd restart

6) I have created the auth.

htpasswd -c /var/www/vhosts/mydomain.com/httpdocs/svn/passwd myusername

THE PROBLEMS:

when I type in a browser: www.mydomain.com/repos/MyProjet it does not ask for user and password and it displays my repository.

I could not figure out how to set user and projects privileges. How can I do it ?

I have tried my svn test project with tortoise and it worked fine, but I need to solve these two problems above to get it working as expected. any help is apprecitated.
s
 
Why you do not use "Password Protected Directories" feature for protection your subversion directory?
 
Back
Top