Many of the users have asked about removing port 8090 so that they can visit CyberPanel on a plain domain like panel.cyberpanel.net. However, normally this is not possible because port 8090 is hardcoded into to LSCPD server which powers CyberPanel. (Hardcoded configurations are used to improve performance)
Step 1: Create a Website for Hostname
First, you need to decide the domain on which you want to access CyberPanel without the port being appended to it. We are going to use https://switch.cyberpanel.net.
Now create a website for this domain (hostname). Please make sure that A record of this domain already points towards your server.
Step 2: Issue Hostname SSL
We now need to issue Hostname SSL for the domain we choose above. In our example it is https://switch.cyberpanel.net.
Setup CyberPanel without port 8090 (OpenLiteSpeed)
Steps above are common whether you run OpenLiteSpeed or LiteSpeed Enterprise Web server. But now you need to do thing differently. We will discuss OpenLiteSpeed first.
Open command line and edit: /usr/local/lsws/conf/httpd_config.conf
Paste following content:
extprocessor cyberpanel {
type proxy
address https://switch.cyberpanel.net:8090
maxConns 100
pcKeepAliveTimeout 60
initTimeout 60
retryTimeout 0
respBuffer 0
}
Please replace https://switch.cyberpanel.net:8090 with the domain you choose in Step 1.
Use Rewrite Rules to Proxy to port 8090
You can now use rewrite rules to proxy traffic to port 8090, now edit rewrite rules for the domain you choose in Step 1 using the rewrite rule guide. You can use these rules:
REWRITERULE ^(.*)$ HTTP://cyberpanel/$1 [P]
Once done, you can now visit CyberPanel on your domain without port 8090. You can also visit PHPMyAdmin and Rainloop.
Setup CyberPanel without port 8090 (LiteSpeed Enterprise Web server)
If you have installed CyberPanel Ent, you are using LiteSpeed Enterprise Web server. If you are not already on CyberPanel Ent and want to switch you can read the switch guide.
Open command line and edit: /usr/local/lsws/conf/httpd_config.xml
Paste following content:
<extProcessor>
<type>proxy</type>
<name>cyberpanel</name>
<address>switch.cyberpanel.net:8090</address>
<maxConns>100</maxConns>
<pcKeepAliveTimeout>60</pcKeepAliveTimeout>
<initTimeout>60</initTimeout>
<retryTimeout>0</retryTimeout>
<respBuffer>0</respBuffer>
</extProcessor>
Make sure to paste it inside in the configuration file.
Use Rewrite Rules to Proxy to port 8090
You can now use rewrite rules to proxy traffic to port 8090, now edit rewrite rules for the domain you choose in Step 1 using the rewrite rule guide. You can use these rules:
RewriteEngine On
REWRITERULE ^(.*)$ HTTP://cyberpanel/$1 [P]
Once done, you can now visit CyberPanel on your domain without port 8090. You can also visit PHPMyAdmin and Rainloop.