Nginx在几秒钟后停止响应

时间:2015-08-06 13:37:01

标签: nginx debian

Debian 7.8,nginx 1.8.0

重新启动我的服务器,调用页面,获取页面,访问日志是正确的。

5.49.32.xxx - - [06/Aug/2015:14:22:30 +0200] "GET / HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36"
5.49.32.xxx - - [06/Aug/2015:14:22:31 +0200] "GET /favicon.ico HTTP/1.1" 200 26 "http://f1.mydomain.fr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36"

服务器启动约1分钟后,nginx停止响应。 access_log中没有任何内容,error_log中没有任何内容。

service nginx restart没有解决问题。如果我想获得响应,唯一的方法是重新启动我的服务器。

我检查了我的系统日志和kern.log,我没有看到任何有趣的内容。

不知道问题出在哪里......

这是我的conf:

server {
    listen 80;
    server_name
        f1.mydomain.fr
    ;

    root /var/www/mydomain/current/web;

    access_log /var/log/nginx/mydomain-access.log;
    error_log  /var/log/nginx/mydomain-error.log error;

    location / {
        # For Symfony2
         try_files $uri /app.php$is_args$args;
    }

    location ~ ^/(app|app_dev|config|app_test|clear|ocp|apcu)\.php(/|$) {
        include /etc/nginx/fastcgi_params;
        include /etc/nginx/conf/fastcgi;
    }

    location ~ /\.ht {
        deny all;
    }
}

0 个答案:

没有答案