[edit] fastcgi_no_cache

Syntax: fastcgi_no_cache string ...
Default:
Context: http
server
location
Reference: fastcgi_no_cache


Specifies in what cases the cached responses will not be used, e.g.

  fastcgi_no_cache $cookie_nocache  $arg_nocache$arg_comment;
  fastcgi_no_cache $http_pragma     $http_authorization;

The expression is false if it is equal to the empty string or "0". For instance, in the above example, the cache will be bypassed if the cookie "nocache" is set in the request.


Module: HttpFastcgiModule