gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-03 17:17:33 25 4
gpt4 key购买 nike

我正在使用 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 上创建了一个 Node 应用程序

[~]# express node_nginx_practice
[~]# cd node_nginx_practice && npm install
[~]# node app

然后,在我的 Windows 主机上,将 URL 指向 http://192.168.1.20:3000,“Express default”页面运行正常。

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

示例:http://192.168.1.20//将指向Express默认页面

我尝试按照网络上的一些教程在 /etc/nginx/nginx.conf 中设置我的 nginx 配置,但没有运气 url 仍然指向 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

现在url指向 express 页面。

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

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

... 

#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 中指定的服务器 block

# 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

最佳答案

配置中的指令(如下所示)加载默认服务器 block 。这就是为什么在新安装的 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 上监听本地主机,因此您的请求可能永远不会到达您新定义的反向代理

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

关于node.js - 如何在 centos 6.4 virtualbox 客户端上使用 express 设置和配置 node.js 到 nginx 反向代理?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20654179/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com