• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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 "owner@example.com"
        UseCanonicalName Off
        ...

now is
Code:
<VirtualHost 10.1.79.103:6969 >
        ServerName "example.com:6969"
        ServerAlias "www.example.com"
        ServerAlias "ipv4.example.com"
        ServerAdmin "owner@example.com"
        UseCanonicalName Off
        ...

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

Thanks.
 
Back
Top