【问题标题】:nginx not reachable from outside with SELINUX disabled禁用 SELINUX 后无法从外部访问 nginx
【发布时间】:2014-01-31 22:21:39
【问题描述】:

我刚刚安装了一个 CentOS 6.5 服务器,并在上面安装了 nginx。

我已禁用 SELINUX 并重新启动服务器,但除了主机本身之外,其他服务器仍然无法访问 nginx。

这是我的 nginx 配置:

# For more information on configuration, see:
#   * Official English Documentation: http://nginx.org/en/docs/
#   * Official Russian Documentation: http://nginx.org/ru/docs/

user              nginx;
worker_processes  4;

error_log  /var/log/nginx/error.log;
#error_log  /var/log/nginx/error.log  notice;
#error_log  /var/log/nginx/error.log  info;

pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    # Load config files from the /etc/nginx/conf.d directory
    # The default server is in conf.d/default.conf
    include /etc/nginx/conf.d/*.conf;

}

我做错了什么?

【问题讨论】:

    标签: nginx centos6


    【解决方案1】:

    已解决,IPTABLES 中有一条规则阻止所有传入连接。

    iptables -L INPUT -n --line-numbers
    iptables -D INPUT <N>
    service iptables save
    service iptables restart
    

    已经解决了问题。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2017-09-04
      • 2012-01-18
      • 2023-01-16
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多