Skip to content

Instantly share code, notes, and snippets.

@devotdev
Created June 18, 2024 12:27
Show Gist options
  • Save devotdev/9a359ee235009ad5caba2d0a8b63f88e to your computer and use it in GitHub Desktop.
Save devotdev/9a359ee235009ad5caba2d0a8b63f88e to your computer and use it in GitHub Desktop.
Benefits of caching - Webserver caching configuration
server {
listen 3000;
proxy_cache my_cache;
location / {
proxy_set_header Host $host;
proxy_pass http://my-backend-service/;
proxy_cache_key $scheme://$host$uri$is_args$query_string;
proxy_cache_valid 200 10m;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment