• The new Python extension is now available. It allows customers to deploy and manage WSGI-based Python applications on their websites directly from Plesk.
  • Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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