Nginx简单的代理配置

核心配置代码

找到Nginx的配置文件nginx.conf,修改配置,主要添加了proxy_pass参数。

#将请求"http:127.0.0.1:80/helloworld" 转向服务器 "http://127.0.0.1:8081"
server {
        listen       80;
        server_name  127.0.0.1;

        location /helloworld {
             proxy_pass     http://127.0.0.1:8081; # 表明了所代理的服务器
 }
    原文作者:Developer
    原文地址: https://segmentfault.com/a/1190000012550166
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞