本身宝塔支持绑定域名访问控制台,不过多台服务器就需要解析多个二级域名有些繁琐,
所以打算用nginx二级目录反代,https://example.com/xx,
可是不登录的话访问后台需要加参数(如:https://1.1.1.1:8888/bb2233/)
登录成功的话才会取消二级参数https://1.1.1.1:8888,设置里取消安全参数风险比较大,所以不太想取消。
那具体规则该怎么写呢,请教各位大佬。
提供一个错误模板:
- #反代宝塔控制台
- location ^~/xx {
- proxy_http_version 1.1;
- proxy_set_header Host $http_host;
- add_header Content-Security-Policy upgrade-insecure-requests;
- proxy_buffering off;
- proxy_redirect off;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- proxy_set_header Accept-Encoding ”;
- proxy_pass https://1.1.1.1:8888/bb2233/;
- }
复制代码
另xiaoz大佬的导航页真不错,可以设置隐私页,这样就把各种需要的链接统合到一起了。 PS:webstack主题目录找不到
https://github.com/helloxz/onenav |