nginx拒绝访问

WBOY
WBOYOriginal
2016-07-06 13:53:052438Durchsuche

<code>前两天开了个aws免费一年的EC2,我就想买个域名搭个自己的博客练练手。前期都很顺利,可是在绑定域名的时候遇到了麻烦,访问网站时灵时不灵,日志里也看不到不出什么问题。折腾一天了也没什么进展,求各位大神救救俺。
下面是nginx.conf的内容,我还没有配虚拟主机。</code>
<code>user www;
worker_processes  1;

error_log  /opt/modules/nginx/logs/error.log notice;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

pid        /opt/modules/nginx/logs/nginx.pid;


events {
    use  epoll;
    worker_connections  1024;
}


http {
    include       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  /opt/modules/nginx/logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       80 default;

        #charset koi8-r;

        access_log  /opt/modules/nginx/logs/access.log  main;
        location / {
            root   html;
            index  index.php index.html index.htm;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.php$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
            include        fastcgi_params;
        }
    }
}</code>
<code>日志里没有打印错误,我这里贴下浏览器报错吧:
</code>

nginx拒绝访问

<code>
这个错误诡异在日志没有任何的报错,而且不同的浏览器访问网站情况还不一样。我用chrome访问的时候大概有十分之一的几率访问正常,用Safari的时候却有百分之50的几率访问正常,用IE压根不能正常访问。
网站地址是:http://gaochao.info
</code>
<code>如果访问正常的话会显示nginx欢迎界面。大家也可以试试。

期初我怀疑是域名没能够正常解析,但后来我排除了这个可能。原因有两点:第一我试过直接修改hosts文件,问题没有任何改善。第二我在ping域名的时候:
</code>

nginx拒绝访问

<code>这里显示域名已经被成功解析到我的ip了。所以应该不是解析的问题。

我已经试了各种方法了,还是没能解决这个问题。恳请各位大神救我脱离苦海啊!!!</code>

回复内容:

<code>前两天开了个aws免费一年的EC2,我就想买个域名搭个自己的博客练练手。前期都很顺利,可是在绑定域名的时候遇到了麻烦,访问网站时灵时不灵,日志里也看不到不出什么问题。折腾一天了也没什么进展,求各位大神救救俺。
下面是nginx.conf的内容,我还没有配虚拟主机。</code>
<code>user www;
worker_processes  1;

error_log  /opt/modules/nginx/logs/error.log notice;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

pid        /opt/modules/nginx/logs/nginx.pid;


events {
    use  epoll;
    worker_connections  1024;
}


http {
    include       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  /opt/modules/nginx/logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       80 default;

        #charset koi8-r;

        access_log  /opt/modules/nginx/logs/access.log  main;
        location / {
            root   html;
            index  index.php index.html index.htm;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.php$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
            include        fastcgi_params;
        }
    }
}</code>
<code>日志里没有打印错误,我这里贴下浏览器报错吧:
</code>

nginx拒绝访问

<code>
这个错误诡异在日志没有任何的报错,而且不同的浏览器访问网站情况还不一样。我用chrome访问的时候大概有十分之一的几率访问正常,用Safari的时候却有百分之50的几率访问正常,用IE压根不能正常访问。
网站地址是:http://gaochao.info
</code>
<code>如果访问正常的话会显示nginx欢迎界面。大家也可以试试。

期初我怀疑是域名没能够正常解析,但后来我排除了这个可能。原因有两点:第一我试过直接修改hosts文件,问题没有任何改善。第二我在ping域名的时候:
</code>

nginx拒绝访问

<code>这里显示域名已经被成功解析到我的ip了。所以应该不是解析的问题。

我已经试了各种方法了,还是没能解决这个问题。恳请各位大神救我脱离苦海啊!!!</code>

其实看到连接被重置,99%就是被墙了!
AWS被墙了,你需要用代理才能访问。

  • 我在东京, 使用chrome和safari均可以正常访问http://gaochao.info和http://52.196.247.234/

  • 我使用IP Location查了一下你的IP(52.196.247.234), 地址在日本东京。我觉得网站间歇性抽风大概是因为被墙了...

  • 换用国内云服务吧。或者使用Hexo搭建博客, 部署到Coding上, 完全免费, 且非常方便。

被墙了,翻墙可以访问。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn