[Django]-Can't get nginx to cache uwsgi result

3👍

I think the issue is with how you are defining your configuration. Nginx expects only one uwsgi_ignore_headers directive but you are providing three – two of these will be ignored. Try updating your configuration to:

uwsgi_ignore_headers Set-Cookie Cache-Control Vary;

Leave a comment