在使用宝塔面板的进程中,有时候我们需要修改面板的端口号。但是,有些用户在修改完端口号以后,会出现没法进入宝塔面板的情况。那末,应当怎样办呢?
以下是我总结的几种解决方式,希望对大家有所帮助:
systemctl stop firewalld
systemctl disable firewalld
注:如果使用的是 CentOS 6 系统,请使用以下命令代替上述命令:
/etc/init.d/iptables stop
yum install nginx
vim /etc/nginx/conf.d/btw.conf
我们在编辑器中输入以下内容:
server {
listen 80;
server_name 你自己的IP地址或域名;
location / {
proxy_pass http://127.0.0.1:8888;(8888是你放在宝塔面板上的端口,可以改成你自己的端口)
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Nginx-Proxy true;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
systemctl start nginx
如果您的服务器是独立 IP,可以直接在浏览器中输入 IP 地址:http://服务器 IP 地址:端口号/
以上是我总结的几种解决方法,如果您遇到了宝塔改了端口进不去的问题,无妨试试上述方法。希望对大家有所帮助。同时,如果您对腾讯云和 WgetCloud 感兴趣,欢迎点击文章开头的链接了解详情。
TikTok千粉号购买平台:https://tiktokusername.com/
TOP