【HestiaCP面板系列】HestiaCP 反向代理其他网站设置

面板介绍:【服务器面板】自带邮件服务!宝塔面板替代品——HestiaCP 面板 保姆级教程 海外开源面板 颜值不错

视频

YouTube:https://youtu.be/EbklLLRO7FE

哔哩哔哩【高清版本可以点击去吐槽到B站观看】:

反向代理

cd /home/gugu/conf/web/halo2.gugu.ge

vim nginx.ssl.conf

【HestiaCP面板系列】HestiaCP 反向代理其他网站设置

【HestiaCP面板系列】HestiaCP 反向代理其他网站设置

location / {
  proxy_pass http://144.202.92.52:8090/;
  rewrite ^/(.*)$ /$1 break;
  proxy_redirect off;
  proxy_set_header Host $host;
  proxy_set_header X-Forwarded-Proto $scheme;
  proxy_set_header X-Real-IP $remote_addr;
  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  proxy_set_header Upgrade-Insecure-Requests 1;
  proxy_set_header X-Forwarded-Proto https;
}
nginx -s reload

【HestiaCP面板系列】HestiaCP 反向代理其他网站设置

解决办法:

编辑

vim /etc/nginx/nginx.conf

,在

http

里面增加

proxy_headers_hash_max_size 51200;
proxy_headers_hash_bucket_size 6400;
nginx -s reload

【HestiaCP面板系列】HestiaCP 反向代理其他网站设置

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享