Hello,
I followed your tutorial to setup fast-cgi caching, and right now the
if ($query_string != "") {
set $skip_cache 1;
}
test makes caching to always fails for anything but the index.
The reason seems to be that when a post is loaded, the $query_string contains the path of the post q=/2018/07/28/never-cached/& (I use a header to see that:
add_header X-query-string "$query_string";)
Thus, the page always return "BYPASS".
I am not sure how one could discriminate what should be cached in that case. Any idea?