• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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