如何在centos 6.4 virtualbox客户端上使用express到nginx反向代理设置和配置node.js?

时间:2013-12-18 09:28:48

标签: node.js express centos virtualbox

我正在使用VirtualBox 4.3.4在我的Windows 8.1系统上创建一个开发VM,并安装了CentOS 6.4作为我的VMServer。我安装了NginX和Node.js没有问题。由于对管理知之甚少,我删除了/etc/sysconfig/iptables的内容,允许所有连接仅用于开发目的(稍后将更改)。

NginX在我的Windows主机上工作正常,并指向浏览器http://192.168.1.20显示“欢迎使用EPEL上的nginx!”页面正在运行。

验证我的node.js应用程序是否正常运行,我通过运行

在我的VMServer上创建了一个节点应用程序
[~]# express node_nginx_practice
[~]# cd node_nginx_practice && npm install
[~]# node app

然后,在我的Windows主机上,将URL指向http://192.168.1.20:3000,“Express默认”页面正在运行,没有任何问题。

问题是如何设置和配置节点应用以在nginx反向代理上提供服务?

示例:http://192.168.1.20 //will point to Express default page

我尝试在/etc/nginx/nginx.conf中设置我的nginx配置,通过网上的一些教程,没有运气网址仍然指向NginX“欢迎来到EPEL上的nginx!”页。

这是我的nginx.conf

# For more information on configuration, see:
#   * Official English Documentation: http://nginx.org/en/docs/
#   * Official Russian Documentation: http://nginx.org/ru/docs/

user              nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log;
#error_log  /var/log/nginx/error.log  notice;
#error_log  /var/log/nginx/error.log  info;

pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    # Load config files from the /etc/nginx/conf.d directory
    # The default server is in conf.d/default.conf
    include /etc/nginx/conf.d/*.conf;

    server {
        listen 80;
        server_name localhost;
        location / {
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarder-For $proxy_add_x_forwarded_for;
            proxy_set_header Host $http_host;
            proxy_set_header X-NginX-Proxy true;
            proxy_pass http://127.0.0.1:3000;
            proxy_redirect off;
        }
    }
}

我知道我错过了什么。有人能指出我正确的方向吗?

编辑答案:

以下是我一步一步解决问题的方法! (感谢“C Blanchard”)

编辑默认的NginX配置文件:

[~]# vim /etc/nginx/conf.d/default.conf

并通过在所有行前加上“#”来评论内部的所有内容。

重启NginX

[~]# /etc/init.d/nginx restart

现在网址指向快递页面。

编辑更新:更好的解决方案。

打开/etc/nginx/conf.d/default.conf找到位置块并通过附加“#”对其进行注释,然后更改指定指向node.js app的正确位置块。请参阅下面的代码示例。

... 

#access_log  logs/host.access.log  main;

# Comment this block
#location / {
#    root   /usr/share/nginx/html;
#    index  index.html index.htm;
#}

# This is the changed location block
location / {
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarder-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
    proxy_set_header X-NginX-Proxy true;
    proxy_pass http://127.0.0.1:3000;
    proxy_redirect off;
}

error_page  404              /404.html;
location = /404.html {
    root   /usr/share/nginx/html;
}

...

现在我删除了我在/etc/nginx/nginx.conf中指定的服务器块

# Load config files from the /etc/nginx/conf.d directory
# The default server is in conf.d/default.conf
include /etc/nginx/conf.d/*.conf;

# Remove from here
server {
    listen 80;
    server_name localhost;
    location / {
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarder-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_set_header X-NginX-Proxy true;
        proxy_pass http://127.0.0.1:3000;
        proxy_redirect off;
    }
}
# Remove till here

}

1 个答案:

答案 0 :(得分:0)

配置中的指令(如下所示)加载默认服务器块。这就是您在新安装的nginx实例上请求localhost:80时看到nginx欢迎页面的原因

# Load config files from the /etc/nginx/conf.d directory
# The default server is in conf.d/default.conf
include /etc/nginx/conf.d/*.conf;

您会发现nginx已经在端口80上侦听localhost,因此您的请求可能永远不会到达新定义的反向代理

尝试通过打开/etc/nginx/conf.d/default.conf来禁用默认的nginx服务器,在那里注释掉服务器块,然后重新启动nginx