码迷,mamicode.com
首页 > Web开发 > 详细

Nginx反向代理部署NodeJS项目

时间:2018-08-16 21:01:22      阅读:384      评论:0      收藏:0      [点我收藏+]

标签:lis   反向代理   add   span   rect   nginx配置文件   off   style   color   

在nginx配置文件种的http节点下:

server {
    listen 8005;
    server_name localhost;
    location /{
            proxy_set_header X_Real_IP $remote_addr;
        proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_pass http://127.0.0.1:3000;
        proxy_redirect off;
    }
}

浏览器输入http://localhost:8005,nginx代理到http://localhost:3000/

Nginx反向代理部署NodeJS项目

标签:lis   反向代理   add   span   rect   nginx配置文件   off   style   color   

原文地址:https://www.cnblogs.com/qk2014/p/9489467.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!