nginx: fastcgi_cache_path vazio

nginx: fastcgi_cache_path vazio

Eu queria experimentar fastcgi_cacheminha configuração do nginx 1.5.8 conforme mostradoaqui.

No nginx conf, seção http, adicionei:

fastcgi_cache_path /var/cache/nginx levels=1:2 keys_zone=microcache:10m
max_size=1000m inactive=60m;

Na seção do servidor:

    set $cache_uri $request_uri;

    # POST requests and urls with a query string should always go to PHP
    if ($request_method = POST) {
        set $cache_uri 'null cache';
    }
    if ($query_string != "") {
        set $cache_uri 'null cache';
    }

    # Don't cache uris containing the following segments
    if ($request_uri ~*
"(/wp-admin/|/xmlrpc.php|/wp-(app|cron|login|register|mail).php|wp-.*.php|/feed/|index.php|wp-comments-popup.php|wp-links-opml.php|wp-locations.php|sitemap(_index)?.xml|[a-z0-9_-]+-sitemap([0-9]+)?.xml)")
{
        set $cache_uri 'null cache';
    }

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

    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        include fastcgi.conf;
        fastcgi_pass unix:/var/run/php5-fpm.sock;


        ##
        # Fastcgi cache
        ##
        set $skip_cache 1;
                if ($cache_uri != "null cache") {
                    add_header X-Cache-Debug "$cache_uri $cookie_nocache
$arg_nocache$arg_comment $http_pragma $http_authorization";
            set $skip_cache 0;
        }
        fastcgi_cache_bypass $skip_cache;
                   fastcgi_cache_key
$scheme$host$request_uri$request_method;
            fastcgi_cache_valid any 8m;
                   fastcgi_cache_bypass $http_pragma;
                fastcgi_cache_use_stale updating error timeout
invalid_header http_500;

    }

Eu chowneditei /var/cache/nginxpara o usuário (e grupo) www-data e chmodo dediquei para 775. Reiniciei o nginx, mas a pasta está sempre vazia. Isso é normal? Como posso testar se fastcgi_cacheestá funcionando?

Responder1

Você também precisa definir fastcgi_cache microcache;em algum ponto da sua configuração. O valor padrão nulldesabilita o cache:http://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_cache

Para verificar, veja se o X-Cache-Debugcabeçalho está presente na resposta. Caso contrário, você está sendo muito restritivo quanto ao que pode ser armazenado em cache. O Nginx também respeita o Cache-Controlcabeçalho que você define na resposta HTTP – você pode usá-lo/verificá-lo em seus aplicativos em vez de adicionar muitas condições para armazenamento em cache.

Responder2

Sim, é normal.

Em nenhum lugar da sua configuração você tem ofastcgi_cachediretiva.

Se não for especificado, o valor implícito será off. Se você quiser que algum cache continue, é melhor mencionar fastcgi_cache microcache;em algum lugar onde a microcacheparte é o nome do seu keys_zonefrom fastcgi_cache_path.

informação relacionada