• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

Change port access to subdomain

kude

New Pleskian
Hello, I have to change what file and how to modify it to allow only one subdomain to have access through port 8015 and not using port 80?
 
Hello Kude,
Vhost configuration files are located here:
Code:
/var/www/vhosts/system/<domain name>/conf
 
Hi adbi, thanks information.
I made the change but this still does not work.

And 'correct what I did?

Code:
<VirtualHost IP:7080>
ServerName "myhost.domain.com:8015"
 
I haven't tested this my self so I can't be sure it actually works ...
However the correct procedure would be adjusting the VirtualHost part ie
Code:
[...]
<VirtualHost 93.**.**.**:8015>
[...]
 
Thanks for your help I solved was the fault of Nginx.
One question you can disable nginx on a subdomain or domain, or goes off to all the servers??

Thank You
 
Last edited:
Not sure that it will help but try to use transparent mode for nginx with

# /usr/local/psa/bin/domain -u domain.com -nginx-transparent-mode true
 
Back
Top