gpt4 book ai didi

node.js - 在 Centos 7 上配置 Nginx 运行 Nodejs

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

我正在我的centos 7上安装nodejs和nginx。我的应用程序在my_domain:3000上运行正常,但在my_domain.com上出现错误,并显示消息您正在查找的页面暂时不可用。请稍后再试。这是我的 nginx.conf。请帮忙nginx.conf

server {
listen 80 default_server;
listen [::]:80 default_server;
server_name digitaloceantwo.25o2.in;
root /usr/share/nginx/html;

# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;

location / {
proxy_pass http://digitaloceantwo.25o2.in:8080;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}

error_page 404 /404.html;
location = /40x.html {
}

error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}

hello.js

var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(8080,'159.65.150.176');
console.log('Server running at http://digitaloceantwo.25o2.in:8080/');

最佳答案

我在使用 Fedora 20、Nginx、Node.js 和 Ghost(博客)时遇到了类似的问题。事实证明我的问题是由于 SELinux 造成的。

这应该可以解决问题:

setsebool -P httpd_can_network_connect 1细节我检查了 SELinux 日志中的错误:

sudo cat/var/log/audit/audit.log | grep nginx | grep 被拒绝并发现运行以下命令解决了我的问题:

sudo cat/var/log/audit/audit.log | grep nginx | grep 拒绝 | audit2allow -M mynginxsudo semodule -i mynginx.pp引用文献:

http://blog.frag-gustav.de/2013/07/21/nginx-selinux-me-mad/

https://wiki.gentoo.org/wiki/SELinux/Tutorials/Where_to_find_SELinux_permission_denial_details

http://wiki.gentoo.org/wiki/SELinux/Tutorials/Managing_network_port_labels

http://www.linuxproblems.org/wiki/Selinux

关于node.js - 在 Centos 7 上配置 Nginx 运行 Nodejs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52165023/

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