0

I'm using a combination of nginx, gunicorn and django. All works fine except that new versions of html pages are not being served. The old pages continue to be served. I've tried restarting gunicorn and nginx and rebooting the server. Suggestions?

William
  • 115
  • 1
  • 2
  • 12

1 Answers1

0

Use something like this: https://chrome.google.com/webstore/detail/cache-killer/jpfbieopdmepaolggioebjmedmclkbap [This is for Chrome, but you get the idea]

It's a cache killer for your browser.

You can also use a no cache header on the webserver Difference between Pragma and Cache-control headers?

You can also clear cached files from your browser, but that only solves the issue until it caches the file again.

mikeb
  • 10,578
  • 7
  • 62
  • 120
  • Turns out it is not a browser cache problem, but you did make me recheck other changes where I found my error. Thanks. – William Sep 14 '17 at 17:47