• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Subversion or CVS

R

rthrash@

Guest
Anyone have any luck with installing Subversion on their Plesk boxes in a subdomain?

If not subversion, how about CVS?

Thanks!
 
I've installed Subversion with success on my Plesk server.

Once you configure a domain to use it .. you'll have to place a vhost.conf file with the httpd settings in it in your conf dir.
 
Here's a sample config that I use

<Location /svn>
DAV svn
SVNParentPath /var/svn
# ServerName svn.vudesign.net
AuthType Basic
AuthName "Subversion repository"
AuthUserFile /etc/svnpasswd
Require valid-user
Order Deny,Allow
Deny from all
Allow from XXX.XXX.XX.XXX
Allow from XX.XX.XX.XXX
Allow from XXX.XX.XX.XX
Allow from XX.XX.XX.XX
Allow from localhost
</Location>

all the x's are merely IP addresses, blocked out for semi-obvious reasons.

Whilst on the subject of subversion, I can heartily recommend Edgewall software's Trac, an issue tracking system and wiki that interfaces nicely with subversion (repo browsing, automatic update of tickets with checkin comments etc.) it needs python running as cgi or mod_python installed as well as a few other things, but it's well worth it.
 
Have you successfully setup Trac on a plesk server?
 
Originally posted by masterkain
I need it too.. :(

What do you need, trac or subversion?

i've done both successfully a couple of times now
 
Back
Top