• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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