Skip to content

Instantly share code, notes, and snippets.

@nodesocket
Created January 12, 2013 02:34
Show Gist options
  • Select an option

  • Save nodesocket/4515756 to your computer and use it in GitHub Desktop.

Select an option

Save nodesocket/4515756 to your computer and use it in GitHub Desktop.
location ~ \.(?:css|js)$ {
set $no_cache 0
if ($http_method ~ (GET|HEAD)) {
set $no_cache 1;
}
...
proxy_no_cache $no_cache;
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment