fastcgi_cache

ariel_esp nginx-forum at nginx.us
Mon Jun 23 14:56:17 UTC 2014


Hi,
I am trying setup fastcgi_cache.
Working fine.... BUT I need bypass some pages... when theses pages have
header "no-cache".... but I dont know how to do this...
The rules for bypass using urls, work fine.. like this:

[code]
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';
    }
[/code]

How can I bypass cache setting header page "no-cache" ?
Example, in varnish work fine:
 if (req.http.Cache-Control ~ "no-cache")
{
    return (pipe);
}

thanks

Posted at Nginx Forum: http://forum.nginx.org/read.php?2,251112,251112#msg-251112



More information about the nginx mailing list