zxayxm 发表于 2016-12-3 12:45:37

lnmp 安装成功 Nginx配置完成 但无法访问网页显示101错误

请教一下:
lnmp 配置成功了,也按照教程添加了网站,
Nginx:
# /usr/local/nginx/sbin/nginx -t
nginx: conflicting server name "www.lizhz.com" on 0.0.0.0:80, ignored
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

Nginx配置如下:
server
    {
      listen 80 default_server;
      #listen [::]:80 default_server ipv6only=on;
      server_name www.lizhz.com;
      index index.html index.htm index.php;
      root/home/wwwroot/default;

      #error_page   404   /404.html;
      include enable-php.conf;

      location /nginx_status
      {
            stub_status on;
            access_log   off;
      }

      location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
      {
            expires      30d;
      }

      location ~ .*\.(js|css)?$
      {
            expires      12h;
      }

      location ~ /\.
      {
            deny all;
      }

      access_log/home/wwwlogs/access.log;
    }


同时服务器的防火墙也关了, 但是无法连接到网站, 显示错误:错误码 101 (net::ERR_CONNECTION_RESET)

licess 发表于 2016-12-3 18:59:29

提示的域名存在多个,根据目前提供的信息,只能这么说
其他可以自己去排查iptables、网络等方面的原因

zxayxm 发表于 2016-12-3 21:23:24

我用外网ping 网址能显示主机ip,但是ping不通, 用主机ping外网能够ping通,请问一下,或许是不是这方面的原因。

licess 发表于 2016-12-4 09:08:56

回复 3# 的帖子

ping不通可能是禁止ping了,可以安装个tcping试试
页: [1]
查看完整版本: lnmp 安装成功 Nginx配置完成 但无法访问网页显示101错误