记一次 nginx的rewrite和proxy_pass操作

文章背景
最初是 用户 --> http 1081 --> proxy_pass 14.xx.xx.xx:10810

现在需要改成: 用户 --> http 1081 --> https 1083 --> proxy_pass 14.xx.xx.xx:10810 (网闸地址)

原本nginx配置:
server{
listen 1081;
index index.shtml index.php index.htm member.html index.html;

location / {
index index.php index.html;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;

记一次 nginx的rewrite和proxy_pass操作最先出现在Python成神之路

版权声明:
作者:dingding
链接:https://www.techfm.club/p/19228.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>