Nginx--Sorry, the page you are looking for is currently unavailable

一次nginx问题查找记录

为了省掉每次输入8080端口的麻烦,使用nginx对jenkins设置了代理,设置完了出现如下错误:

An error occurred.

Sorry, the page you are looking for is currently unavailable.
Please try again later.

If you are the system administrator of this resource then you should check the error log for details.

Faithfully yours, nginx.


1. 查找错误位置

grep "error_log" /etc/nginx/* -R


2. 查看错误日志

tail -n 10 /var/log/nginx/error.log

Nginx--Sorry, the page you are looking for is currently unavailable_第1张图片

3. 可以看到许多 (13: Permission denied) while connecting 错误,而这个错误一般是由SELinux引起的

(13: Permission denied) while connecting to upstream:[nginx]

4. 输入
setsebool -P httpd_can_network_connect 1

迅速就变好了


你可能感兴趣的:(nginx,CentOS)