• 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
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

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