• 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

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