nginx使用反向代理支持node.js服务

Posted 阮文武的网络日志

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx使用反向代理支持node.js服务相关的知识,希望对你有一定的参考价值。

前言

Node.js自身能作为web服务器用,但是如果要在一台机器上开启多个Node.js应用该如何做呢?有一种答案就是使用nginx做反向代理。反向代理在这里的作用就是,当代理服务器接收到请求,将请求转发到目的服务器,然后获取数据后返回。

步骤

一、正常使用node.js开启web服务

var http = require(http);
http.createServer(function (request, response) {
    response.writeHead(200, {Content-Type: text/plain});
    response.end(hello world\n);
}).listen(1337);
console.log(Server running at http://127.0.0.1:1337/);

二、为域名配置nginx

[[email protected] vhost]# ls
default.conf               node.ruanwenwu.cn.conf  test.ruanwenwu.conf    www.tjzsyl.com.conf
laravel.ruanwenwu.cn.conf  wss.ruanwenwu.cn.conf  www.tjzsyl.com.conf.bak
[[email protected] vhost]# pwd

node.ruanwenwu.cn.conf:

server{
    listen 80;
    server_name node.ruanwenwu.cn;
    location / {
        proxy_pass http://127.0.0.1:1337;
    }
}

步骤很简单,这些就可以了。

最后看一下我们的效果:http://node.ruanwenwu.cn

以上是关于nginx使用反向代理支持node.js服务的主要内容,如果未能解决你的问题,请参考以下文章

安装Nginx并为node.js设置反向代理

Nginx 反向代理 Serving Node.js app 静态文件

nginx反向代理node.js获取客户端IP

使用 NodeJS 实现反向代理

如何编写一个 HTTP 反向代理服务器

使用 Nginx 来反向代理多个 NoderCMS