• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

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