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

Subversion and Plesk 11 on Ubuntu

ManuG2k

Basic Pleskian
Hello,
I have install Subversion on my Plesk 11 Linux Ubuntu server (12.04) with these command:

apt-get install subversion libapache2-svn

I need to modify my Virtual Host configuration file, but I have a ngix proxy enabled.
I not find vhost.conf on my /var/www/vhosts/mysite.com/conf/

If I need to add these to my virtual host configuration file

<Location /svn>
DAV svn
SVNParentPath /var/www/vhosts/mysite.com/svn/
AuthType Basic
AuthName "SVN"
AuthUserFile /var/www/vhosts/mysite.com/svn.password
Require valid-user
</Location>


how should I do?

Manuel
 
Just create file vhost.conf in the location you have mentioned.
The file should have read permission for user 'apache'.
Put your content and run /usr/local/psa/admin/bin/httpdmng --reconfigure-all

Looks like nginx should not take any effect on it.
You can check site on apache only (bypass nginx proxy) by http://mysite.com:7080/
 
Back
Top