nginx x status do cache invertendo o hit e expirando no site WordPress (teste do arquivo php OK)

1

Eu tenho uma configuração de cache nginx para um site WordPress, e ela está mudando entre o status do cabeçalho nginx x-cache: HIT e x-cache: EXPIRED aparentemente aleatoriamente:

C:\Users\curl-7.48>curl -I http://example.com
HTTP/1.1 200 OK
Server: nginx/1.8.0
Date: Sun, 03 Apr 2016 14:15:15 GMT
Content-Type: text/html; charset=UTF-8
Connection: keep-alive
X-Powered-By: PHP/5.5.9-1ubuntu4.14
X-Cached: Sun, 03 Apr 2016 14:15:12 GMT
Set-Cookie: PHPSESSID=vfuo4s72b2ffulacumgu9aidf0; path=/
Link: <http://example.com/wp-json/>; rel="https://api.w.org/"
Link: <http://example.com/>; rel=shortlink
Z_LOCATION: PHP MAIN
URI: /index.php
X-Cache: HIT

C:\Users\curl-7.48>curl -I http://example.com
HTTP/1.1 200 OK
Server: nginx/1.8.0
Date: Sun, 03 Apr 2016 14:15:17 GMT
Content-Type: text/html; charset=UTF-8
Connection: keep-alive
X-Powered-By: PHP/5.5.9-1ubuntu4.14
X-Cached: Sun, 03 Apr 2016 14:15:16 GMT
Set-Cookie: PHPSESSID=fbd37bsvi27cd3hcmrcg4lsio6; path=/
Link: <http://example.com/wp-json/>; rel="https://api.w.org/"
Link: <http://example.com/>; rel=shortlink
Z_LOCATION: PHP MAIN
URI: /index.php
X-Cache: EXPIRED     

C:\Users\curl-7.48>curl -I http://example.com
HTTP/1.1 200 OK
Server: nginx/1.8.0
Date: Sun, 03 Apr 2016 14:15:46 GMT
Content-Type: text/html; charset=UTF-8
Connection: keep-alive
X-Powered-By: PHP/5.5.9-1ubuntu4.14
X-Cached: Sun, 03 Apr 2016 14:15:43 GMT
Set-Cookie: PHPSESSID=dkngc066edc1apnogulga1mtg4; path=/
Link: <http://example.com/wp-json/>; rel="https://api.w.org/"
Link: <http://example.com/>; rel=shortlink
Z_LOCATION: PHP MAIN
URI: /index.php
X-Cache: HIT

Eu também tenho um script time.php simples que sempre mostra o hit: <?php echo time(); ?>

C:\Users\curl-7.48\bin>curl -I http://example.com/time.php
HTTP/1.1 200 OK
Server: nginx/1.8.0
Date: Sun, 03 Apr 2016 14:26:17 GMT
Content-Type: text/html
Connection: keep-alive
X-Powered-By: PHP/5.5.9-1ubuntu4.14
Z_LOCATION: PHP MAIN
URI: /time.php
X-Cache: HIT

Perguntas:

  1. Estou fazendo o cache para / dev / shm / nginx. Quaisquer indicações sobre o que está acontecendo e como encontrar falhas (o uso da memória é bom, não há troca de página de memória para o disco, os inodes são bons)?

  2. Isso tem a ver com meu aplicativo PHP retornando cabeçalhos que estão forçando o nginx a não armazenar em cache? Qualquer maneira de detectar isso? Eu não posso ver quaisquer cabeçalhos que dizem isso na saída CURL (a menos que eu esteja faltando alguma coisa)?

  3. A questão de ordem do fastcgi_pass php; deve estar no início ou no final do bloco location ~ \.php$ ?

  4. Além disso, como encontrar o arquivo real que é a página armazenada em cache para time.php em /dev/shm/nginx ... (há muitos diretos de primeiro nível 0x0-0xf e, em seguida, um segundo diretório de 0x00 to 0xff )?

  5. Ao executar fatrace , não consigo ver que o / dev / shm / nginx está sendo lido - estou faltando alguma coisa lá? O cache do nginx recentemente leu arquivos para um armazenamento de memória local?

  6. Eu configuro o registro em cache de acordo com Minhas páginas não estão sendo atendidas a partir do cache. Mas nginx está realmente armazenando os arquivos em cache e vejo que estou recebendo muitas "GET /all/?source=p1& HTTP/1.1" BYPASS e "GET /video/aab HTTP/1.1" EXPIRED entradas, isso está relacionado?

Minha configuração do nginx está abaixo:

http
{
    client_max_body_size 100m;
    proxy_connect_timeout 15s;
    proxy_send_timeout  15s;
    proxy_read_timeout  15s;
    fastcgi_send_timeout 15s;
    fastcgi_read_timeout 15s;
    fastcgi_buffer_size 64k;
    fastcgi_buffers 32 32k;

    fastcgi_cache_path /dev/shm/nginx levels=1:2 keys_zone=MYCACHE:512m max_size=4096m inactive=120m;
    fastcgi_cache_key "$scheme$request_method$host$request_uri";

    server
    {
        server_name example.com;
        root /home/example/public_html/;
        index index.php;

        access_log /home/example/logs/access.log;
        error_log  /home/example/logs/error.log;

        # Rules to work out when cache should or should not be used
        set $skip_cache 0;

        # POST requests and urls with a query string should always go to PHP
        if ($request_method = POST) {
            set $skip_cache 1;
        }

        if ($query_string != "") {
            set $skip_cache 1;
        }

        # Don't cache uris containing the following segments
        if ($request_uri ~* "/wp-admin/|/xmlrpc.php|wp-.*.php|/feed/|index.php|sitemap(_index)?.xml") {
            set $skip_cache 1;
        }

        # Don't use the cache for logged in users or recent commenters
        if ($http_cookie ~* "comment_author|wordpress_[a-f0-9]+|wp-postpass|wordpress_no_cache|wordpress_logged_in") {
            set $skip_cache 1;
        }

        location = /favicon.ico {
            log_not_found off;
            access_log off;
        }

        location / {
            try_files $uri $uri/ /index.php?$args;
        }

        location ~ \.php$ {
            try_files $uri =404;

            fastcgi_split_path_info ^(.+\.php)(/.+)$;
            include fastcgi_params;
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

            fastcgi_cache_valid 200 120m;
            fastcgi_cache_use_stale error timeout invalid_header http_500;
            fastcgi_ignore_headers Cache-Control Expires Set-Cookie;

            fastcgi_cache MYCACHE;
            fastcgi_cache_methods GET HEAD;
            fastcgi_cache_bypass $skip_cache;
            fastcgi_no_cache $skip_cache;

            #more_clear_headers Server; more_clear_headers "Pragma";
            add_header Z_LOCATION "PHP MAIN"; add_header URI $uri; # DEBUG
            add_header X-Cache $upstream_cache_status;

            fastcgi_pass php;
        }

        location ~ /purge(/.*) {
            fastcgi_cache_purge MYCACHE "$scheme$request_method$host$1";
        }
    }
}
    
por g18c 03.04.2016 / 16:42

0 respostas