nginx代理配置
Posted lishidefengchen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx代理配置相关的知识,希望对你有一定的参考价值。
例如: http://11.11.11.1/api/getList ,这样的全部代理到 http://12.12.12.1:5000/api/getList
修改文件 /etc/nginx/conf.d/default.conf
location ~ /api/ { proxy_pass http://12.12.12.1:5000; //这里需要注意,最后不要有反斜杠/ proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Real-IP $remote_addr; }
重启服务,即可。
参考: https://blog.csdn.net/cxm19881208/article/details/65441750
(完)
以上是关于nginx代理配置的主要内容,如果未能解决你的问题,请参考以下文章