• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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