如何更改cpanel默认端口?
我有一台服务器,该服务器上的 cpanel 在 2083 端口上运行。我需要这个 url 来配置我的其他服务。我想将端口 2083 更改为 8088。我必须在哪里进行更改。 我检查了我的httpd.conf,他们写了
RewriteCond %{HTTP_HOST} ^cpanel\.
RewriteCond %{HTTPS} on
RewriteRule ^/(.*) https://127.0.0.1:2083/$1 [P]
那么我需要在这个文件中做什么来更改cpanel。
我检查了 cpanel/APACHE_CONFIG 但没有得到任何提示。
I have one server and on that server cpanel is running on 2083 port. I need this url for configure my other service. I want to change port 2083 to 8088. Where i have to make changes.
I checked my httpd.conf in that they wrote
RewriteCond %{HTTP_HOST} ^cpanel\.
RewriteCond %{HTTPS} on
RewriteRule ^/(.*) https://127.0.0.1:2083/$1 [P]
So is there any change what i have to do in this file to change cpanel.
I checked cpanel/APACHE_CONFIG but i didnt get any hint.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
更改 cpanel.config 中的端口号对我来说不起作用
所以我使用了内部端口重定向,即将端口 8088 上的所有流量内部路由到端口 2083。
changing port number in cpanel.config didn't work for me
So I used the internal port redirection i.e route all traffic on port 8088 internally to port 2083.
您可以在 /var/cpanel/cpanel.config 修改文件。
您可以找到此值:
port=2082
我相信这是可以更改的默认 cPanel 端口。
You can modify the file at /var/cpanel/cpanel.config
You can find this value:
port=2082
I believe this is the default cPanel port that can be changed.
通过: http://linuxworldweb.blogspot.co .uk/2012/01/how-to-change-cpanel-port.html
via : http://linuxworldweb.blogspot.co.uk/2012/01/how-to-change-cpanel-port.html