vps交流

[疑问] 不懂就问,请教二级目录反代宝塔控制台


本身宝塔支持绑定域名访问控制台,不过多台服务器就需要解析多个二级域名有些繁琐,

所以打算用nginx二级目录反代,https://example.com/xx,

可是不登录的话访问后台需要加参数(如:https://1.1.1.1:8888/bb2233/)

登录成功的话才会取消二级参数https://1.1.1.1:8888,设置里取消安全参数风险比较大,所以不太想取消。

那具体规则该怎么写呢,请教各位大佬。[疑问]  不懂就问,请教二级目录反代宝塔控制台

提供一个错误模板:

  1. #反代宝塔控制台
  2.     location ^~/xx {
  3.         proxy_http_version 1.1;
  4.         proxy_set_header Host $http_host;
  5.         add_header Content-Security-Policy upgrade-insecure-requests;
  6.         proxy_buffering off;
  7.         proxy_redirect off;
  8.         proxy_set_header X-Real-IP $remote_addr;
  9.         proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  10.         proxy_set_header Accept-Encoding ”;
  11.         proxy_pass https://1.1.1.1:8888/bb2233/;
  12.     }

复制代码

另xiaoz大佬的导航页真不错,可以设置隐私页,这样就把各种需要的链接统合到一起了。
PS:webstack主题目录找不到

https://github.com/helloxz/onenav