Nginx反向代理部署NodeJS项目
Posted 一夜秋2014
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx反向代理部署NodeJS项目相关的知识,希望对你有一定的参考价值。
在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项目的主要内容,如果未能解决你的问题,请参考以下文章
腾讯云(ubuntu)下安装 nodejs + 实现 Nginx 反向代理
在Server2003上配置nginx反向代理nodejs。