• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be 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.

How-To create vhost_ssl.conf for subdomain?

ChrisFi

New Pleskian
Hi *,

I am trying to install a seafile cloud storage server on my hosted virtual server running Plesk 11.0.9. To access the web interface I need to configure the vhost.conf of the subdomain I use to redirect the request to the server.

Code:
RewriteEngine On

# seafile httpserver
ProxyPass /seafhttp http://127.0.0.1:8082
ProxyPassReverse /seafhttp http://127.0.0.1:8082
RewriteRule ^/seafhttp - [QSA,L]

# seahub
RewriteRule ^/(media.*)$ /$1 [QSA,L,PT]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /seahub.fcgi/$1 [QSA,L,E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

To use HTTPS for the interface I need to configure the corresponding vhost_ssl.conf. But the only way to do this is the vhost_ssl.conf of the root domain leading to a redirect for the root domain, but that's not what I intended. What am I missing here?
 
Back
Top