• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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