我的节点应用程序在端口3000本地运行,我已经设置了nginx,但是由于某些原因它无法正常工作。
我尝试将proxy_pass传递到http://google.com并起作用,但是当我将其更改为http://localhost:3000时,我得到了nginx错误页面。
该应用程序正在运行,我在服务器上打开了端口3000,可以在http://domain:3000上访问它。
server {
listen 80;
listen [::]:80;
server_name mydomain.com;
# root /usr/share/nginx/html;
location / {
proxy_pass "http://localhost:3000";
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
知道为什么代理不能正常工作吗?
谢谢。
答案 0 :(得分:0)
这是SELinux问题-已阻止http请求。
此命令已解决:
setsebool -P httpd_can_network_connect true