• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Resolved Using a custom port

dopeboy

Basic Pleskian
doing a proxy forward and now i need my domain to listen on a custom port ex 6969,

so just i have edit my example.com.conf file .

first i add on top of conf line's "Listen 6969"

and i make those changes
was
Code:
<VirtualHost 10.1.79.103:7080 >
        ServerName "example.com:80"
        ServerAlias "www.example.com"
        ServerAlias "ipv4.example.com"
        ServerAdmin "[email protected]"
        UseCanonicalName Off
        ...

now is
Code:
<VirtualHost 10.1.79.103:6969 >
        ServerName "example.com:6969"
        ServerAlias "www.example.com"
        ServerAlias "ipv4.example.com"
        ServerAdmin "[email protected]"
        UseCanonicalName Off
        ...

for now its working without any problem, but just i want to ask i'm doing this right?!

Thanks.
 
Back
Top