V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
zhfsxtx
V2EX  ›  服务器

nginx配置问题

  •  
  •   zhfsxtx · 2012-04-12 13:42:37 +08:00 · 3174 次点击
    这是一个创建于 4411 天前的主题,其中的信息可能已经有所发展或是发生改变。
    在公司可以SSH到我家里的机器上面,但是NGNIX一直访问不了,在家里则可以访问

    这是我的NGNIX配置,有什么问题吗
    server {
    #listen 80; ## listen for ipv4; this line is default and implied
    #listen [::]:80 default ipv6only=on; ## listen for ipv6

    root /home/hh/www;
    index index.php index.html index.htm;

    # Make site accessible from http://localhost/
    server_name 113.77.206.42;
    listen 80;
    location / {
    # First attempt to serve request as file, then
    # as directory, then fall back to index.html
    try_files $uri $uri/ /index.html;

    allow all;
    }


    location /doc {
    root /usr/share;
    autoindex on;
    allow 127.0.0.1;
    deny all;
    }

    location /images {
    root /usr/share;
    autoindex off;
    }

    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 /usr/share/nginx/www;
    #}

    # 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 /var/www/nginx-default$fastcgi_script_name;
    include /etc/nginx/fastcgi_params;
    }

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    # deny all;
    #}
    }
    4 条回复    1970-01-01 08:00:00 +08:00
    zhfsxtx
        1
    zhfsxtx  
    OP
       2012-04-12 13:55:50 +08:00
    好郁闷啊
    jint
        2
    jint  
       2012-04-12 14:08:26 +08:00
    不要用80端口,换个比较大的不常用的端口试试。
    honk
        3
    honk  
       2012-04-12 14:17:37 +08:00
    @jint +1 ISP通常會封80
    zhfsxtx
        4
    zhfsxtx  
    OP
       2012-04-12 14:25:26 +08:00
    @jint
    @honk
    太感谢LS两位了,原来ISP通常會封80
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   5581 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 28ms · UTC 08:10 · PVG 16:10 · LAX 01:10 · JFK 04:10
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.