• 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.

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