nginx proxy_pass 不适用于本地主机
nginx proxy_pass doesn't work to localhost
我的节点应用 运行 在本地端口 3000 上,我已经设置了 nginx,但由于某些原因它无法正常工作。
我尝试 proxy_pass 到 http://google.com and it worked, but when I change it to 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 {
}
}
知道为什么代理不能正常工作吗?
谢谢。
这是 SELinux 问题 - 阻止了 http 请求。
这个命令解决了它:
setsebool -P httpd_can_network_connect true
我的节点应用 运行 在本地端口 3000 上,我已经设置了 nginx,但由于某些原因它无法正常工作。
我尝试 proxy_pass 到 http://google.com and it worked, but when I change it to 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 {
}
}
知道为什么代理不能正常工作吗?
谢谢。
这是 SELinux 问题 - 阻止了 http 请求。
这个命令解决了它:
setsebool -P httpd_can_network_connect true