I am trying to disable all caches in nginx for testing purposes.
I set the following line
add_header Cache-Control no-cache;
I see that the page itself is not cached, but images, css and javascripts. I suspect this is due to the fact that Firefox gets the title “304 Not Modified”.
Is there any way to prevent this?
PS:
I think I found it myself. Firefox shows "200 OK" all the time.
Is it correct?
I added
if_modified_since off; add_header Last-Modified "";
Moon
source share