• 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.

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