Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wzhliang/3bab554a89866f1f381056f2df4ae523 to your computer and use it in GitHub Desktop.
Save wzhliang/3bab554a89866f1f381056f2df4ae523 to your computer and use it in GitHub Desktop.
proxy_cache_path /path/to/cache levels=1:2 keys_zone=my_cache:10m max_size=10g
inactive=60m use_temp_path=off;
server {
# ...
location / {
proxy_cache my_cache;
proxy_pass http://my_upstream;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment