Tagged Questions
0
votes
1answer
14 views
Nginx Browser Caching using HTTP Headers outside server/location block
I am having difficulty setting the HTTP expires headers for Nginx outside of specific server (and then location) blocks. What I want is to something like the following:
location ~* ...
4
votes
1answer
82 views
How do Expires headers and cache manifest rules work together?
I find the W3C's official Offline Web Applications specification to be rather vague about how the cache manifest interacts with headers such as ETag, Expires, or Pragma on cached assets. I know that ...
1
vote
1answer
678 views
Google Chrome audit: resources are explicitly non-cacheable?
If I run a Google Chrome audit on a site, it lists all CSS, PNG, JPG, JS files and even the main domain (i.e. www.example.com) under the heading:
Leverage browser caching
The following resources ...
4
votes
1answer
1k views
HTTP Header Cache Time: s-maxage and max-age
I am setting up a CDN for my website, I found the following sample for adding to the 'httpd.conf' file, this is used to adjust the cache-time for client and CDN:
ExpiresActive On
ExpiresByType ...
0
votes
1answer
528 views
What response headers encourage 304-Not Modified upon reloads?
When looking at the network waterfall in Firebug/Chrome/IE9, I keep seeing "200-OK" instead of "304-Not Modified" for many cache-able files (images, js, css) on this page, for example.
I believe it ...
5
votes
1answer
6k views
Headers to prevent 304/If-modified-since/HEAD requests
What headers should I be sending to outright stop all requests to the server after the content has been cached?
We have a very high latency server (Sigh, VMWare) so even sending a HEAD request to the ...
3
votes
1answer
119 views
Can server break clients' cache settings?
I have disputed a domain name to a cybersquatter that I expect to recover soon. The problem is that the cybersquatter has changed the cache headers and now every user who already visited the site or ...
2
votes
1answer
91 views
Caching preventing users seeing site updates
I'm experiencing a caching issue I can't explain. This is happening across browsers, IPs and ISPs. If a user force-refreshes, they see the new content. If they then refresh or return to the page, the ...
2
votes
1answer
408 views
Problem with Expires/Cache-Control Headers
I'm using Apache 2.2.16.
I've got the following HTML file in my htdocs folder:
<html>
<link media="screen" type="text/css" href="/css/test.css" rel="stylesheet" />
...