nginx无法从外部访问,禁用SELINUX



我刚刚安装了一台 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;
}

我做错了什么?

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

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

已经解决了问题。

最新更新