Francis Daly Wrote:
-------------------------------------------------------
> On Sun, Mar 22, 2015 at 06:35:31AM -0400, carnagel wrote:
> 
> Hi there,
> 
> > I understand how to skip cache on cookies, POST, query strings, urls
> > containing string etc
> 
> How do you skip cache on urls containing strings?

# 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;
        }   



> 
> > But how do you define the home page itself in $skip_cache please?
> 
> What url or urls is "the home page"?

the root website page http://www.mysite.com/

> 
>       f
> -- 
> Francis Daly        [email protected]
> 
> _______________________________________________
> nginx mailing list
> [email protected]
> http://mailman.nginx.org/mailman/listinfo/nginx



I guess another way of asking my question "How do I define bypass fastcgi
cache on a page with no url string, ie: the root website page?"

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

_______________________________________________
nginx mailing list
[email protected]
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to