nginx代理api
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx代理api相关的知识,希望对你有一定的参考价值。
参考技术A 前端访问后台API前置标识为/api,在nginx增加api代理访问配置,配置如下:location /api/
proxy_pass http://192.168.1.10:8888/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
以上是关于nginx代理api的主要内容,如果未能解决你的问题,请参考以下文章