Fix nginx cache (#8558)

This commit is contained in:
Nicolas Mowen 2023-11-09 15:09:25 -07:00 committed by GitHub
parent d0036b2f77
commit aa93d4fbdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@ http {
proxy_cache_path /dev/shm/nginx_cache levels=1:2 keys_zone=api_cache:10m max_size=10m inactive=1m use_temp_path=off; proxy_cache_path /dev/shm/nginx_cache levels=1:2 keys_zone=api_cache:10m max_size=10m inactive=1m use_temp_path=off;
map $http_accept $should_not_cache { map $sent_http_content_type $should_not_cache {
'application/json' 0; 'application/json' 0;
default 1; default 1;
} }