php not working from aliased subdir

Nikolaos Milas nmilas at noa.gr
Tue Jan 31 06:43:23 UTC 2017


On 19/1/2016 10:58 μμ, Francis Daly wrote:

> Good luck with it,

Thank you Francis and everyone for your feedback.

I have tried various things with the aliased directories, but I am still 
having the problem.

I hope someone can help me with my current config, which I attach, 
together with the error_log (debugging level) which contains the output 
of the request:

    http://www-xxx.noa.gr/museum/library/

This request outputs a "File not found." message to the browser.

My logic is to use a scheme like (see full details in the attached config):

    server {
         ...

         location ^~ / {

             allow all;

               location ~ \.php$ {
                  ...
            }
         }

         location ^~ /administrator/ {
             allow 10.201.0.0/16;
             deny all;

           location ~ \.php$ {
              ...
            }
         }

         location ^~ /museum/library/opac/ {

             alias /var/webs/wwwopenbib/opac/;
             allow all;

             location ~ \.php$ {
                ...
             }
         }

         location ^~ /museum/library/ {
             alias /var/webs/wwwopenbib/;
             allow 10.201.0.0/16;
             deny all;

             location ~ \.php$ {
                ...
             }
         }

         location ^~ /museum/ {
             alias /var/webs/wwwmuseum/;
             allow all;
         }
    }

But it doesn't work for the aliased dirs.

The request in question (http://www-xxx.noa.gr/museum/library/) should 
access the file:

    http://www-xxx.noa.gr/museum/library/index.php

(i.e. file: /var/webs/wwwopenbib/index.php) whose content is:

    <?php
       header("Location: home/index.php");
    ?>

and should lead the request to:

    http://www-xxx.noa.gr/museum/library/home/index.php

But it doesn't happen that way.

Please advise on how to resolve the situation!

(Any additional advice on my current config will be greatly appreciated!)

Thanks a lot,
Nick

-------------- next part --------------
server {

    listen [::]:80;

    server_name  www-xxx.noa.gr;
    access_log  /var/webs/wwwnoa32/log/access_log main;
    error_log /var/webs/wwwnoa32/log/error_log debug;
    root   /var/webs/wwwnoa32/www/;

    index  index.php index.html index.htm index.cgi default.html default.htm default.php;

    location ^~ / {
        try_files $uri $uri/ /index.php?$args;
        allow all;

          location ~ \.php$ {

                # Setup var defaults
                set $no_cache "";
                # If non GET/HEAD, don't cache & mark user as uncacheable for 1 second via cookie
                if ($request_method !~ ^(GET|HEAD)$) {
                    set $no_cache "1";
                }
                # Drop no cache cookie if need be
                # (for some reason, add_header fails if included in prior if-block)
                if ($no_cache = "1") {
                    add_header Set-Cookie "_mcnc=1; Max-Age=2; Path=/";
                    add_header X-Microcachable "0";
                }
                # Bypass cache if no-cache cookie is set
                if ($http_cookie ~* "_mcnc") {
                            set $no_cache "1";
                }
                # Bypass cache if flag is set
                fastcgi_no_cache $no_cache;
                fastcgi_cache_bypass $no_cache;
                fastcgi_cache microcache;
                fastcgi_cache_key $scheme$host$request_uri$request_method;
                fastcgi_cache_valid 200 301 302 303 502 5s;
                fastcgi_cache_use_stale updating error timeout invalid_header http_500;
                fastcgi_pass_header Set-Cookie;
                fastcgi_pass_header Cookie;
                fastcgi_ignore_headers Cache-Control Expires Set-Cookie;

                try_files $uri =404;
                include /etc/nginx/fastcgi_params;
                fastcgi_param PATH_INFO $fastcgi_script_name;
                fastcgi_intercept_errors on;

        fastcgi_buffer_size 384k;
        fastcgi_buffers 256 16k;
        fastcgi_busy_buffers_size 384k;
        fastcgi_temp_file_write_size 384k;
        fastcgi_read_timeout 240;

        fastcgi_pass unix:/tmp/php-fpm.sock;

        fastcgi_index index.php;
        include /etc/nginx/fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

       }
    }

    location ~* /(images|cache|media|logs|tmp)/.*\.(php|php3|php4|php5|php6|pl|py|jsp|asp|sh|cgi)$ {
        return 403;
    }

    location ~ /\.ht {
        deny  all;
    }

    location ^~ /administrator/ {
        allow 10.201.0.0/16;
        deny all;
 
      location ~ \.php$ {

        fastcgi_cache off;

        try_files $uri =404;
        include /etc/nginx/fastcgi_params;
        fastcgi_param PATH_INFO $fastcgi_script_name;
        fastcgi_intercept_errors on;

        fastcgi_buffer_size 128k;
        fastcgi_buffers 256 16k;
        fastcgi_busy_buffers_size 256k;
        fastcgi_temp_file_write_size 256k;
        fastcgi_read_timeout 240;

        fastcgi_pass unix:/tmp/php-fpm.sock;

        fastcgi_index index.php;
        include /etc/nginx/fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;       

       }

    }

    location ^~ /errlog/ {

        alias /var/webs/wwwnoa32/log/;

        autoindex on;

        allow 10.201.0.0/16;
        deny all;

   }

    location ^~ /museum/library/opac/ {

        alias /var/webs/wwwopenbib/opac/;

        allow all;

        location ~ \.php$ {

           fastcgi_param SCRIPT_FILENAME /var/webs/wwwopenbib/opac/$fastcgi_script_name;
           fastcgi_param QUERY_STRING    $query_string;
           fastcgi_param REQUEST_METHOD  $request_method;
           fastcgi_param CONTENT_TYPE    $content_type;
           fastcgi_param CONTENT_LENGTH  $content_length;

           fastcgi_pass unix:/tmp/php-fpm.sock;
           fastcgi_index index.php;

           include /etc/nginx/fastcgi_params;
        }
    }

    location ^~ /museum/library/images/ {

        alias /var/webs/wwwopenbib/images/;
        allow all;
    }

    location ^~ /museum/library/shared/ {
        alias /var/webs/wwwopenbib/shared/;
        allow all;
    }

    location ^~ /museum/library/ {
        alias /var/webs/wwwopenbib/;
        allow 10.201.0.0/16;
        deny all;

        location ~ \.php$ {

        fastcgi_param SCRIPT_FILENAME /var/webs/wwwopenbib$fastcgi_script_name;
        fastcgi_param QUERY_STRING    $query_string;
        fastcgi_param REQUEST_METHOD  $request_method;
        fastcgi_param CONTENT_TYPE    $content_type;
        fastcgi_param CONTENT_LENGTH  $content_length;

        fastcgi_pass unix:/tmp/php-fpm.sock;
        fastcgi_index index.php;

        include /etc/nginx/fastcgi_params;

        }
    }

    location ^~ /museum/ {
        alias /var/webs/wwwmuseum/;
        allow all;
    }
}
-------------- next part --------------
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http header: "Host: www-xxx.noa.gr"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http header: "User-Agent: Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:51.0) Gecko/20100101 Firefox/51.0"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http header: "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http header: "Accept-Language: en-US,en;q=0.5"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http header: "Accept-Encoding: gzip, deflate"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http header: "Cookie: _ga=GA1.2.257792966.1478507802; 73da122b55189f0c507421af4a9ba97a=el-GR"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http header: "DNT: 1"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http header: "Connection: keep-alive"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http header: "Upgrade-Insecure-Requests: 1"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http header done
2017/01/31 08:17:24 [debug] 15750#15750: *149615 event timer del: 14: 1485843504368
2017/01/31 08:17:24 [debug] 15750#15750: *149615 generic phase: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 rewrite phase: 1
2017/01/31 08:17:24 [debug] 15750#15750: *149615 test location: "/"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 test location: "errlog/"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 test location: "museum/"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 test location: "library/"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 test location: ~ "\.php$"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 using configuration "/museum/library/"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http cl:-1 max:1048576
2017/01/31 08:17:24 [debug] 15750#15750: *149615 rewrite phase: 3
2017/01/31 08:17:24 [debug] 15750#15750: *149615 post rewrite phase: 4
2017/01/31 08:17:24 [debug] 15750#15750: *149615 generic phase: 5
2017/01/31 08:17:24 [debug] 15750#15750: *149615 generic phase: 6
2017/01/31 08:17:24 [debug] 15750#15750: *149615 generic phase: 7
2017/01/31 08:17:24 [debug] 15750#15750: *149615 access phase: 8
2017/01/31 08:17:24 [debug] 15750#15750: *149615 access: A4CAFBC3 FFFFFFFF 0100007F
2017/01/31 08:17:24 [debug] 15750#15750: *149615 access: A4CAFBC3 00FFFFFF 00CAFBC3
2017/01/31 08:17:24 [debug] 15750#15750: *149615 access phase: 9
2017/01/31 08:17:24 [debug] 15750#15750: *149615 access phase: 10
2017/01/31 08:17:24 [debug] 15750#15750: *149615 post access phase: 11
2017/01/31 08:17:24 [debug] 15750#15750: *149615 try files phase: 12
2017/01/31 08:17:24 [debug] 15750#15750: *149615 content phase: 13
2017/01/31 08:17:24 [debug] 15750#15750: *149615 content phase: 14
2017/01/31 08:17:24 [debug] 15750#15750: *149615 open index "/var/webs/wwwopenbib/index.php"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 internal redirect: "/museum/library/index.php?"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 rewrite phase: 1
2017/01/31 08:17:24 [debug] 15750#15750: *149615 test location: "/"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 test location: "errlog/"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 test location: "museum/"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 test location: "library/"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 test location: "opac/"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 test location: "images/"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 test location: ~ "\.php$"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 using configuration "\.php$"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http cl:-1 max:1048576
2017/01/31 08:17:24 [debug] 15750#15750: *149615 rewrite phase: 3
2017/01/31 08:17:24 [debug] 15750#15750: *149615 post rewrite phase: 4
2017/01/31 08:17:24 [debug] 15750#15750: *149615 generic phase: 5
2017/01/31 08:17:24 [debug] 15750#15750: *149615 generic phase: 6
2017/01/31 08:17:24 [debug] 15750#15750: *149615 generic phase: 7
2017/01/31 08:17:24 [debug] 15750#15750: *149615 access phase: 8
2017/01/31 08:17:24 [debug] 15750#15750: *149615 access: A4CAFBC3 FFFFFFFF 0100007F
2017/01/31 08:17:24 [debug] 15750#15750: *149615 access: A4CAFBC3 00FFFFFF 00CAFBC3
2017/01/31 08:17:24 [debug] 15750#15750: *149615 access phase: 9
2017/01/31 08:17:24 [debug] 15750#15750: *149615 access phase: 10
2017/01/31 08:17:24 [debug] 15750#15750: *149615 post access phase: 11
2017/01/31 08:17:24 [debug] 15750#15750: *149615 try files phase: 12
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http init upstream, client timer: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 epoll add event: fd:14 op:3 ev:80002005
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "SCRIPT_FILENAME"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "/var/webs/wwwopenbib"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script var: "/museum/library/index.php"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "SCRIPT_FILENAME: /var/webs/wwwopenbib/museum/library/index.php"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "QUERY_STRING"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "QUERY_STRING: "
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "REQUEST_METHOD"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script var: "GET"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "REQUEST_METHOD: GET"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "CONTENT_TYPE"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "CONTENT_TYPE: "
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "CONTENT_LENGTH"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "CONTENT_LENGTH: "
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "QUERY_STRING"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "QUERY_STRING: "
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "REQUEST_METHOD"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script var: "GET"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "REQUEST_METHOD: GET"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "CONTENT_TYPE"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "CONTENT_TYPE: "
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "CONTENT_LENGTH"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "CONTENT_LENGTH: "
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "SCRIPT_NAME"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script var: "/museum/library/index.php"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "SCRIPT_NAME: /museum/library/index.php"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "REQUEST_URI"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script var: "/museum/library/"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "REQUEST_URI: /museum/library/"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "DOCUMENT_URI"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script var: "/museum/library/index.php"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "DOCUMENT_URI: /museum/library/index.php"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "DOCUMENT_ROOT"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script var: "/var/webs/wwwopenbib/"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "DOCUMENT_ROOT: /var/webs/wwwopenbib/"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "SERVER_PROTOCOL"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script var: "HTTP/1.1"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "REQUEST_SCHEME"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script var: "http"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "REQUEST_SCHEME: http"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: ""
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "GATEWAY_INTERFACE"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "CGI/1.1"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "SERVER_SOFTWARE"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "nginx/"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script var: "1.10.2"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "SERVER_SOFTWARE: nginx/1.10.2"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "REMOTE_ADDR"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script var: "::ffff:195.251.202.164"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "REMOTE_ADDR: ::ffff:195.251.202.164"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "REMOTE_PORT"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script var: "56856"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "REMOTE_PORT: 56856"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "SERVER_ADDR"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script var: "::ffff:83.212.5.29"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "SERVER_ADDR: ::ffff:83.212.5.29"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "SERVER_PORT"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script var: "80"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "SERVER_PORT: 80"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "SERVER_NAME"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script var: "www-xxx.noa.gr"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "SERVER_NAME: www-xxx.noa.gr"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "REDIRECT_STATUS"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script copy: "200"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "REDIRECT_STATUS: 200"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "HTTP_HOST: www-xxx.noa.gr"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:51.0) Gecko/20100101 Firefox/51.0"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "HTTP_ACCEPT: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "HTTP_ACCEPT_LANGUAGE: en-US,en;q=0.5"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "HTTP_ACCEPT_ENCODING: gzip, deflate"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "HTTP_COOKIE: _ga=GA1.2.257792966.1478507802; 73da122b55189f0c507421af4a9ba97a=el-GR"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "HTTP_DNT: 1"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "HTTP_CONNECTION: keep-alive"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 fastcgi param: "HTTP_UPGRADE_INSECURE_REQUESTS: 1"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http cleanup add: 00000000016C61D8
2017/01/31 08:17:24 [debug] 15750#15750: *149615 get rr peer, try: 1
2017/01/31 08:17:24 [debug] 15750#15750: *149615 stream socket 34
2017/01/31 08:17:24 [debug] 15750#15750: *149615 epoll add connection: fd:34 ev:80002005
2017/01/31 08:17:24 [debug] 15750#15750: *149615 connect to unix:/tmp/php-fpm.sock, fd:34 #149616
2017/01/31 08:17:24 [debug] 15750#15750: *149615 connected
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http upstream connect: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 posix_memalign: 000000000165E9E0:128 @16
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http upstream send request
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http upstream send request body
2017/01/31 08:17:24 [debug] 15750#15750: *149615 chain writer buf fl:0 s:1040
2017/01/31 08:17:24 [debug] 15750#15750: *149615 chain writer in: 00000000016C6210
2017/01/31 08:17:24 [debug] 15750#15750: *149615 writev: 1040 of 1040
2017/01/31 08:17:24 [debug] 15750#15750: *149615 chain writer out: 0000000000000000
2017/01/31 08:17:24 [debug] 15750#15750: *149615 event timer add: 34: 60000:1485843504375
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http finalize request: -4, "/museum/library/index.php?" a:1, c:3
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http request count:3 blk:0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http finalize request: -4, "/museum/library/index.php?" a:1, c:2
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http request count:2 blk:0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 post event 00007F1AACC991F0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 post event 00007F1AACD5A970
2017/01/31 08:17:24 [debug] 15750#15750: *149615 post event 00007F1AACC99970
2017/01/31 08:17:24 [debug] 15750#15750: *149615 delete posted event 00007F1AACC991F0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http run request: "/museum/library/index.php?"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http upstream check client, write event:1, "/museum/library/index.php"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http upstream recv(): -1 (11: Resource temporarily unavailable)
2017/01/31 08:17:24 [debug] 15750#15750: *149615 delete posted event 00007F1AACD5A970
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http upstream request: "/museum/library/index.php?"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http upstream process header
2017/01/31 08:17:24 [debug] 15750#15750: *149615 malloc: 0000000001683B10:4096
2017/01/31 08:17:24 [debug] 15750#15750: *149615 recv: fd:34 168 of 4096
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 01
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 07
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 00
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 01
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 00
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 17
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 01
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 00
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record length: 23
2017/01/31 08:17:24 [error] 15750#15750: *149615 FastCGI sent in stderr: "Primary script unknown" while reading response header from upstream, client: ::ffff:195.251.202.164, server: www-xxx.noa.gr, request: "GET /museum/library/ HTTP/1.1", upstream: "fastcgi://unix:/tmp/php-fpm.sock:", host: "www-xxx.noa.gr"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 01
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 06
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 00
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 01
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 00
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 6B
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 05
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 00
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record length: 107
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi parser: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi header: "Status: 404 Not Found"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi parser: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi header: "X-Powered-By: PHP/5.6.22"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi parser: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi header: "Content-type: text/html; charset=UTF-8"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi parser: 1
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi header done
2017/01/31 08:17:24 [debug] 15750#15750: *149615 posix_memalign: 0000000001684B20:4096 @16
2017/01/31 08:17:24 [debug] 15750#15750: *149615 HTTP/1.1 404 Not Found
Server: nginx
Date: Tue, 31 Jan 2017 06:17:24 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: keep-alive
Vary: Accept-Encoding
X-Powered-By: PHP/5.6.22
Content-Encoding: gzip

2017/01/31 08:17:24 [debug] 15750#15750: *149615 write new buf t:1 f:0 0000000001684C48, pos 0000000001684C48, size: 243 file: 0, size: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http write filter: l:0 f:0 s:243
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http cacheable: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http upstream process upstream
2017/01/31 08:17:24 [debug] 15750#15750: *149615 pipe read upstream: 1
2017/01/31 08:17:24 [debug] 15750#15750: *149615 pipe preread: 37
2017/01/31 08:17:24 [debug] 15750#15750: *149615 readv: 1, last:3928
2017/01/31 08:17:24 [debug] 15750#15750: *149615 pipe recv chain: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 pipe buf free s:0 t:1 f:0 0000000001683B10, pos 0000000001683B93, size: 37 file: 0, size: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 pipe length: -1
2017/01/31 08:17:24 [debug] 15750#15750: *149615 input buf #0 0000000001683B93
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 01
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 03
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 00
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 01
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 00
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 08
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 00
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record byte: 00
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi record length: 8
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http fastcgi sent end request
2017/01/31 08:17:24 [debug] 15750#15750: *149615 input buf 0000000001683B93 16
2017/01/31 08:17:24 [debug] 15750#15750: *149615 pipe write downstream: 1
2017/01/31 08:17:24 [debug] 15750#15750: *149615 pipe write downstream flush in
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http output filter "/museum/library/index.php?"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http copy filter: "/museum/library/index.php?"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http postpone filter "/museum/library/index.php?" 00000000016C64A0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http gzip filter
2017/01/31 08:17:24 [debug] 15750#15750: *149615 malloc: 00000000017609E0:270336
2017/01/31 08:17:24 [debug] 15750#15750: *149615 gzip alloc: n:1 s:5928 a:8192 p:00000000017609E0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 gzip alloc: n:32768 s:2 a:65536 p:00000000017629E0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 gzip alloc: n:32768 s:2 a:65536 p:00000000017729E0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 gzip alloc: n:32768 s:2 a:65536 p:00000000017829E0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 gzip alloc: n:16384 s:4 a:65536 p:00000000017929E0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 gzip in: 00000000016C64C0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 gzip in_buf:0000000001684E58 ni:0000000001683B93 ai:16
2017/01/31 08:17:24 [debug] 15750#15750: *149615 malloc: 0000000001713740:8192
2017/01/31 08:17:24 [debug] 15750#15750: *149615 deflate in: ni:0000000001683B93 no:0000000001713740 ai:16 ao:8192 fl:0 redo:0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 deflate out: ni:0000000001683BA3 no:0000000001713740 ai:0 ao:8192 rc:0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 gzip in_buf:0000000001684E58 pos:0000000001683B93
2017/01/31 08:17:24 [debug] 15750#15750: *149615 gzip in: 0000000000000000
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http copy filter: 0 "/museum/library/index.php?"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 pipe write downstream done
2017/01/31 08:17:24 [debug] 15750#15750: *149615 event timer: 34, old: 1485843504375, new: 1485843504377
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http upstream exit: 0000000000000000
2017/01/31 08:17:24 [debug] 15750#15750: *149615 finalize http upstream request: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 finalize http fastcgi request
2017/01/31 08:17:24 [debug] 15750#15750: *149615 free rr peer 1 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 close http upstream connection: 34
2017/01/31 08:17:24 [debug] 15750#15750: *149615 free: 000000000165E9E0, unused: 48
2017/01/31 08:17:24 [debug] 15750#15750: *149615 event timer del: 34: 1485843504375
2017/01/31 08:17:24 [debug] 15750#15750: *149615 delete posted event 00007F1AACC99970
2017/01/31 08:17:24 [debug] 15750#15750: *149615 reusable connection: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http upstream temp fd: -1
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http output filter "/museum/library/index.php?"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http copy filter: "/museum/library/index.php?"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http postpone filter "/museum/library/index.php?" 00007FFC5631E660
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http gzip filter
2017/01/31 08:17:24 [debug] 15750#15750: *149615 gzip in: 00000000016C64E0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 gzip in_buf:0000000001684F78 ni:0000000000000000 ai:0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 deflate in: ni:0000000000000000 no:0000000001713740 ai:0 ao:8192 fl:4 redo:0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 deflate out: ni:0000000000000000 no:0000000001713752 ai:0 ao:8174 rc:1
2017/01/31 08:17:24 [debug] 15750#15750: *149615 gzip in_buf:0000000001684F78 pos:0000000000000000
2017/01/31 08:17:24 [debug] 15750#15750: *149615 free: 00000000017609E0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http chunk: 10
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http chunk: 26
2017/01/31 08:17:24 [debug] 15750#15750: *149615 write old buf t:1 f:0 0000000001684C48, pos 0000000001684C48, size: 243 file: 0, size: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 write new buf t:1 f:0 00000000016850B8, pos 00000000016850B8, size: 4 file: 0, size: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 write new buf t:0 f:0 0000000000000000, pos 0000000000704868, size: 10 file: 0, size: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 write new buf t:1 f:0 0000000001713740, pos 0000000001713740, size: 26 file: 0, size: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 write new buf t:0 f:0 0000000000000000, pos 00000000004D5259, size: 7 file: 0, size: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http write filter: l:1 f:1 s:290
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http write filter limit 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 writev: 290 of 290
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http write filter 0000000000000000
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http copy filter: 0 "/museum/library/index.php?"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http finalize request: 0, "/museum/library/index.php?" a:1, c:1
2017/01/31 08:17:24 [debug] 15750#15750: *149615 set http keepalive handler
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http close request
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http log handler
2017/01/31 08:17:24 [debug] 15750#15750: *149615 free: 0000000001713740
2017/01/31 08:17:24 [debug] 15750#15750: *149615 free: 0000000000000000
2017/01/31 08:17:24 [debug] 15750#15750: *149615 free: 0000000001683B10
2017/01/31 08:17:24 [debug] 15750#15750: *149615 free: 00000000016C44E0, unused: 3
2017/01/31 08:17:24 [debug] 15750#15750: *149615 free: 00000000016C54F0, unused: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 free: 0000000001684B20, unused: 2262
2017/01/31 08:17:24 [debug] 15750#15750: *149615 free: 00000000016C6B20
2017/01/31 08:17:24 [debug] 15750#15750: *149615 hc free: 0000000000000000 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 hc busy: 0000000000000000 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 tcp_nodelay
2017/01/31 08:17:24 [debug] 15750#15750: *149615 reusable connection: 1
2017/01/31 08:17:24 [debug] 15750#15750: *149615 event timer add: 14: 20000:1485843464377
2017/01/31 08:17:24 [debug] 15750#15750: *149615 post event 00007F1AACD5A1F0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 delete posted event 00007F1AACD5A1F0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http keepalive handler
2017/01/31 08:17:24 [debug] 15750#15750: *149615 malloc: 00000000016C6B20:1024
2017/01/31 08:17:24 [debug] 15750#15750: *149615 recv: fd:14 -1 of 1024
2017/01/31 08:17:24 [debug] 15750#15750: *149615 recv() not ready (11: Resource temporarily unavailable)
2017/01/31 08:17:24 [debug] 15750#15750: *149615 free: 00000000016C6B20
2017/01/31 08:17:24 [debug] 15750#15750: *149615 post event 00007F1AACD5A1F0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 post event 00007F1AACC991F0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 delete posted event 00007F1AACD5A1F0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http keepalive handler
2017/01/31 08:17:24 [debug] 15750#15750: *149615 malloc: 00000000016C6B20:1024
2017/01/31 08:17:24 [debug] 15750#15750: *149615 recv: fd:14 332 of 1024
2017/01/31 08:17:24 [debug] 15750#15750: *149615 reusable connection: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 posix_memalign: 00000000016C44E0:4096 @16
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http header: "Host: www-xxx.noa.gr"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http header: "User-Agent: Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:51.0) Gecko/20100101 Firefox/51.0"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http header: "Accept: */*"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http header: "Accept-Language: en-US,en;q=0.5"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http header: "Accept-Encoding: gzip, deflate"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http header: "Cookie: _ga=GA1.2.257792966.1478507802; 73da122b55189f0c507421af4a9ba97a=el-GR"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http header: "DNT: 1"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http header: "Connection: keep-alive"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http header done
2017/01/31 08:17:24 [debug] 15750#15750: *149615 generic phase: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 rewrite phase: 1
2017/01/31 08:17:24 [debug] 15750#15750: *149615 test location: "/"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 test location: "errlog/"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 test location: "museum/"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 test location: ~ "\.php$"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 using configuration "/"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http cl:-1 max:1048576
2017/01/31 08:17:24 [debug] 15750#15750: *149615 rewrite phase: 3
2017/01/31 08:17:24 [debug] 15750#15750: *149615 post rewrite phase: 4
2017/01/31 08:17:24 [debug] 15750#15750: *149615 generic phase: 5
2017/01/31 08:17:24 [debug] 15750#15750: *149615 generic phase: 6
2017/01/31 08:17:24 [debug] 15750#15750: *149615 generic phase: 7
2017/01/31 08:17:24 [debug] 15750#15750: *149615 access phase: 8
2017/01/31 08:17:24 [debug] 15750#15750: *149615 access: A4CAFBC3 00000000 00000000
2017/01/31 08:17:24 [debug] 15750#15750: *149615 access phase: 9
2017/01/31 08:17:24 [debug] 15750#15750: *149615 access phase: 10
2017/01/31 08:17:24 [debug] 15750#15750: *149615 post access phase: 11
2017/01/31 08:17:24 [debug] 15750#15750: *149615 try files phase: 12
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http script var: "/favicon.ico"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 trying to use file: "/favicon.ico" "/var/webs/wwwnoa32/www/favicon.ico"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 try file uri: "/favicon.ico"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 content phase: 13
2017/01/31 08:17:24 [debug] 15750#15750: *149615 content phase: 14
2017/01/31 08:17:24 [debug] 15750#15750: *149615 content phase: 15
2017/01/31 08:17:24 [debug] 15750#15750: *149615 content phase: 16
2017/01/31 08:17:24 [debug] 15750#15750: *149615 content phase: 17
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http filename: "/var/webs/wwwnoa32/www/favicon.ico.gz"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 add cleanup: 00000000016C52F0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 content phase: 18
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http filename: "/var/webs/wwwnoa32/www/favicon.ico"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 add cleanup: 00000000016C5348
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http static fd: 34
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http set discard body
2017/01/31 08:17:24 [debug] 15750#15750: *149615 HTTP/1.1 200 OK
Server: nginx
Date: Tue, 31 Jan 2017 06:17:24 GMT
Content-Type: image/x-icon
Content-Length: 2238
Last-Modified: Tue, 24 Sep 2013 12:24:17 GMT
Connection: keep-alive
ETag: "52418471-8be"
Accept-Ranges: bytes

2017/01/31 08:17:24 [debug] 15750#15750: *149615 write new buf t:1 f:0 00000000016C5930, pos 00000000016C5930, size: 235 file: 0, size: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http write filter: l:0 f:0 s:235
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http output filter "/favicon.ico?"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http copy filter: "/favicon.ico?"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http postpone filter "/favicon.ico?" 00007FFC5631E670
2017/01/31 08:17:24 [debug] 15750#15750: *149615 write old buf t:1 f:0 00000000016C5930, pos 00000000016C5930, size: 235 file: 0, size: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 write new buf t:0 f:1 0000000000000000, pos 0000000000000000, size: 0 file: 0, size: 2238
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http write filter: l:1 f:0 s:2473
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http write filter limit 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 no tcp_nodelay
2017/01/31 08:17:24 [debug] 15750#15750: *149615 tcp_nopush
2017/01/31 08:17:24 [debug] 15750#15750: *149615 writev: 235 of 235
2017/01/31 08:17:24 [debug] 15750#15750: *149615 sendfile: @0 2238
2017/01/31 08:17:24 [debug] 15750#15750: *149615 sendfile: 2238 of 2238 @0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http write filter 0000000000000000
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http copy filter: 0 "/favicon.ico?"
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http finalize request: 0, "/favicon.ico?" a:1, c:1
2017/01/31 08:17:24 [debug] 15750#15750: *149615 set http keepalive handler
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http close request
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http log handler
2017/01/31 08:17:24 [debug] 15750#15750: *149615 run cleanup: 00000000016C5348
2017/01/31 08:17:24 [debug] 15750#15750: *149615 file cleanup: fd:34
2017/01/31 08:17:24 [debug] 15750#15750: *149615 free: 00000000016C44E0, unused: 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 free: 00000000016C54F0, unused: 2378
2017/01/31 08:17:24 [debug] 15750#15750: *149615 free: 00000000016C6B20
2017/01/31 08:17:24 [debug] 15750#15750: *149615 hc free: 0000000000000000 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 hc busy: 0000000000000000 0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 reusable connection: 1
2017/01/31 08:17:24 [debug] 15750#15750: *149615 event timer add: 14: 20000:1485843464493
2017/01/31 08:17:24 [debug] 15750#15750: *149615 post event 00007F1AACD5A1F0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 delete posted event 00007F1AACC991F0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http empty handler
2017/01/31 08:17:24 [debug] 15750#15750: *149615 delete posted event 00007F1AACD5A1F0
2017/01/31 08:17:24 [debug] 15750#15750: *149615 http keepalive handler
2017/01/31 08:17:24 [debug] 15750#15750: *149615 malloc: 00000000016C6B20:1024
2017/01/31 08:17:24 [debug] 15750#15750: *149615 recv: fd:14 -1 of 1024
2017/01/31 08:17:24 [debug] 15750#15750: *149615 recv() not ready (11: Resource temporarily unavailable)
2017/01/31 08:17:24 [debug] 15750#15750: *149615 free: 00000000016C6B20
2017/01/31 08:17:44 [debug] 15750#15750: *149615 event timer del: 14: 1485843464493
2017/01/31 08:17:44 [debug] 15750#15750: *149615 http keepalive handler
2017/01/31 08:17:44 [debug] 15750#15750: *149615 close http connection: 14
2017/01/31 08:17:44 [debug] 15750#15750: *149615 reusable connection: 0
2017/01/31 08:17:44 [debug] 15750#15750: *149615 free: 0000000000000000
2017/01/31 08:17:44 [debug] 15750#15750: *149615 free: 00000000016A9B70, unused: 52


More information about the nginx mailing list