我在ElastiCbean stalk环境中托管了我的nodejs。 它使用默认配置和默认端口。 现在我打算打开另一个端口并从Nodejs应用程序中侦听该端口。这是在多个端口中打开nodejs。
我已经完成了nodejs编码部分。但我不确定nginx的更改是否使它能够监听多个端口。 有人可以向我解释一下吗?
答案 0 :(得分:0)
我仅为Java backends配置了nginx,但实际上,您将需要配置server
指令以包括要监听的其他端口,例如:
server {
# listen for the extra the port the load balancer is forwarding to
listen 88;
access_log /var/log/nginx/access.log main;
client_header_timeout 60;
client_body_timeout 60;
keepalive_timeout 60;
gzip off;
gzip_comp_level 4;
location / {
# forward to the actual port the application runs on
proxy_pass http://127.0.0.1:8888;
proxy_http_version 1.1;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
因此,我建议您使用SSH到您的Nodejs EB服务器上,到处寻找您的nginx配置目录,寻找nginx
,conf.d
文件夹或
nginx.conf
文件。当您找到you can override the default server
config, or apply an include
statement to extend it时,无论哪种方式,上述server
指令都应允许就nginx而言访问多个端口。