Author Topic: Centos Panel in a Subdomain  (Read 9508 times)

0 Members and 1 Guest are viewing this topic.

Offline
*
Centos Panel in a Subdomain
« on: July 11, 2018, 05:59:29 PM »
Hi!

How to access my centos web panel by a subdomain.

Eg.:
www.mydomain.com:2030 -> panel.mydomain.com

Thanks!

Offline
*
Re: Centos Panel in a Subdomain
« Reply #1 on: July 12, 2018, 09:04:21 AM »
simply by adding port at end
2030 & 2031 for admin
2082 & 2083 for user

http://panel.mydomain.com:2030
AntiDDoS Protection (web + mail)
http://centos-webpanel.com/website-ddos-protection-proxy

Join our Development Team and get paid !
http://centos-webpanel.com/develope-modules-for-cwp


Services Monitoring & RBL Monitoring
http://centos-webpanel.com/services-monitor


Do you need Fast and FREE Support included for your CWP linux server?
http://centos-webpanel.com/noc-partner-list
Installation Instructions
http://centos-webpanel.com/installation-instructions
Get Fast Support Here
http://centos-webpanel.com/support-services

Offline
*
Re: Centos Panel in a Subdomain
« Reply #2 on: July 12, 2018, 12:00:36 PM »
I want access without port.

Offline
*
Re: Centos Panel in a Subdomain
« Reply #3 on: July 13, 2018, 01:34:39 PM »
to access without port you would need to setup apache proxy for that should be simple..you can google it.
VPS & Dedicated server provider with included FREE Managed support for CWP.
http://www.studio4host.com/

*** Don't allow that your server or website is down, choose hosting provider with included expert managed support for your CWP.

Offline
*
Re: Centos Panel in a Subdomain
« Reply #4 on: July 13, 2018, 04:09:28 PM »
Like this:

Code: [Select]
<VirtualHost *:8181>
    ServerAdmin hostmaster@example.com
    ProxyRequests off
    DocumentRoot /home/DOMAIN_DIR
    ProxyPreserveHost On

    ServerName panel.my_domain.com

    ServerAlias panel.my_domain.com

    <Location />
        ProxyPass http://panel.my_domain.com:2030/
        ProxyPassReverse http://panel.my_domain.com:2030/
        Order allow,deny
        Allow from all
    </Location>
</VirtualHost>

?

Thanks!
« Last Edit: July 13, 2018, 04:19:59 PM by angelorocha »