Update nginx

Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
This commit is contained in:
Bensuperpc 2022-11-26 15:08:56 +01:00
parent 4749efa6f4
commit 9aeeed0be0
No known key found for this signature in database
GPG Key ID: D00C6B1021747EED

View File

@ -24,6 +24,9 @@ server {
location @flask_app {
include uwsgi_params;
uwsgi_pass flask_server;
uwsgi_buffering on;
uwsgi_buffers 8 16k;
uwsgi_cache UWSGI;
uwsgi_cache_valid 200 302 10m;
@ -31,9 +34,12 @@ server {
uwsgi_cache_valid any 1m;
uwsgi_cache_lock on;
#uwsgi_ignore_headers Vary;
#uwsgi_ignore_headers Cache-Control X-Accel-Expires Expires Vary Set-Cookie;
#uwsgi_hide_header Vary;
uwsgi_ignore_headers Vary;
uwsgi_hide_header Vary;
add_header X-cache $upstream_cache_status;
}
}