The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
9 views

Cloudfront/S3 Caching Issue

We have moved our static web content to Amazon's CloudFront, backed by S3. We've successfully applied the caching-related meta data to the objects, and when viewing the response headers for the ...
0
votes
0answers
15 views

Expiring a far future expire header

I'm curious about using Amazon S3 to host my relatively static blog site. I think I could easily make it all HTML and then upload this to Amazon S3. I would like to set a far future header (since I ...
0
votes
1answer
41 views

HTTP header expires Implementation in Wordpress

I am implementing HTTP Header expires implementation in Wordpress - say browser side caching for reducing the number of hits to server as well as decrease the loading time by loading css/images/js ...
0
votes
0answers
27 views

Still get Add Expires headers warning

I want to ask you a question.. i've just add this to my htaccess <IfModule mod_expires.c> ExpiresActive On ExpiresDefault "access plus 1 seconds" ExpiresByType image/x-icon "access plus ...
0
votes
0answers
36 views

Browser memory usage with HTTP caching

I like to cache an ajax request to my server. I understand I can do this by specifying an 'Expires' header in the HTTP response from the server. I download a JSON array from my server and then I ...
0
votes
1answer
256 views

nginx Expires header and reverse proxy not working

I am trying to configure an Expires header for static files on nginx (0.7.67). The static files are served from a Golang reverse proxy: location /rev/ { proxy_pass http://localhost:8910/; ...
0
votes
0answers
33 views

Can I rely on If-Modified-Since always validating against the server?

I am building a javascript combo loader and minifier for an app. Essentially, this will just be a self hosted version of Yahoo's Combo Loader, which is used to load multiple javascript files in 1 ...
0
votes
0answers
135 views

Far future Expires header ignored

Following the advice given by Yahoo / YSlow at http://developer.yahoo.com/performance/rules.html#expires I am trying to set a far future Expires header for my images. In my .htacess I have: ...
0
votes
1answer
432 views

Expires header based on dynamic Content-Type in nginx

I have a PHP website where some content is user-generated. For example, users can upload photos that get resized and can be requested. I'd like to specify an Expires header (for caching) based on the ...
0
votes
2answers
1k views

Add Expires headers

Add Expires headers There are 21 static components without a far-future expiration date. http://static.doers.lk/examples-offline.css http://static.doers.lk/kendo.common.min.css ...
1
vote
0answers
126 views

Why to specify Last-Modified?

I'm bit confused with this header. I already added "Expires" and "Cache-Control: max-age" in my .httaccess. I also removed "E-tag" and "Last-Modified" as per advice: If you remove the ...
1
vote
1answer
468 views

Adding Expires headers to favicon.ico using Nginx as proxy of node.js

My site is running on node.js and I'm using Nginx to server my static files from a cookieless domain. For these files I have setup Nginx to set the expires headers. However it does not seem to be ...
1
vote
1answer
131 views

expires header not working drupal

I am setting expires header in .htaccess file as below ExpiresActive On ExpiresDefault A1209600 It works for all the files that are in document root, but I have a separate mounted drive which ...
0
votes
2answers
88 views

Is Expires header not needed now?

I see big player (i.e. akamai) started to drop the Expires header all together and only use Cache-Control, e.g. curl -I ...
0
votes
2answers
334 views

Setting expire headers for fonts not working

I am using the below code in my .htaccess file to try and set the expire headers for some fonts, but upon checking my firefox cache and checking the expire header it the font is set to expire in about ...
4
votes
1answer
334 views

Setting expire headers and gzipping data via .htaccess

I'm trying to set it up so that the browser will cache the webfonts for a long period and also attempting to gzip them for a faster download. From what I can understand you can do this via your ...
1
vote
1answer
164 views

Is HTML5 appcache better than using expires headers or localstorage?

consider the following scenario: site/app is only used online - requires active internet connection; all files have proper expire header settings; forcing file refresh can be handled via something ...
2
votes
3answers
608 views

header expires on PHP file with JS output

How to put an expires header on a PHP file which outout a JS file? .htaccess ExpiresActive on ExpiresByType image/gif A29030400 ExpiresByType image/jpeg A29030400 ExpiresByType image/png A29030400 ...
7
votes
3answers
513 views

PHP: header expires not working

My PHP code: $expires_date = date('D, j F Y H:i:s', strtotime('now + 10 years')) . ' GMT'; header("Expires: $expires_date"); header('Content-type: text/javascript'); echo 'hello world'; ...
0
votes
1answer
385 views

ASP.NET MVC ySlow Add Expires Headers for dynamically served script

I am serving Javascript vai a controller method that looks like this: [OutputCache(Duration = 120)] [Compress] public ActionResult JavascriptFile(String scriptName) { string content; ...
0
votes
1answer
199 views

How to set a dynamic Expires header in Jetty?

Jetty allows headers to be set using the jetty-rewrite functionality, but it doesn't appear to be very smart, and only accepts a fixed string. How do I tell Jetty to send an "expires in 8 hours" ...
0
votes
1answer
211 views

Expires in 1 month header on all files except .php files

To speed up my website I have read about the Expires header, how to implement it in Apache, and how to only do so for certain file types. However I want to set a one month expiry on all files except ...
0
votes
1answer
180 views

Setting expire headers for a specific file or image

I have a website which extensively uses files which are static like Jquery library, images and some other functionality JS files. So, I wish to set infinite expiry time for those resources so that ...
1
vote
1answer
518 views

How to configure jetty as css/js file server with expires header?

<Configure class="org.eclipse.jetty.server.handler.ContextHandler"> <Set name="contextPath">/</Set> <Set name="resourceBase"><SystemProperty name="jetty.home" ...
0
votes
2answers
1k views

content-type related nginx expires header

is there a possibility to set content-type dependend expire header in nginx? I'm quite new to nginx and tried the following: location ~ /files\.php$ { ... if ($content_type = ...
0
votes
1answer
39 views

Do browse served a cached file if its name or contents change?

Two general questions I'm wondering about both in the case for a given file(.js, .css, etc.) where you've set an expires header and also when you have not: Do browsers request a new file (NOT ...
0
votes
0answers
207 views

yslow site enhancement getting f's wanna fix but dont know how

So I am getting "F" on a couple things related to a project I am working on where the client is anal retentive about YSlow and its results. So I am getting an F on "Add Expires Headers" for js, css, ...
1
vote
0answers
341 views

Expires and 304 not modified request

Why when i was setting Expires and disabled Etags, I still getting 304 response? This is my .htaccess file: Header unset Pragma FileETag None Header unset ETag #Expire Header <FilesMatch ...
1
vote
2answers
251 views

How to trigger browser html refresh for cached html files?

YSLOW suggests: For static components: implement "Never expire" policy by setting far future Expires header.... if you use a far future Expires header you have to change the component's filename ...
18
votes
3answers
4k views

How to get Gzip and Expires Header on a Rails 3.1.1 app on Heroku Cedar?

I'm running a Rails 3.1.1 application on Heroku Cedar. By default this stack doesn't Gzip and set Expires Headers on assets. There is some doc about that, but it's not very clear : ...
2
votes
1answer
156 views

Thoughts on dealing with expires headers, etags, and content updates?

I've implemented server independent eTags on my site and I'm now looking at adding expires headers to prevent most of the 304 requests. I'm concerned about using long expiration headers since it ...
4
votes
1answer
740 views

How do you implement far future expires headers in asp.net with IIS 6

We are running a ASP.NET MVC 2.0 web app and it's running on Windows Server 2003 with IIS 6.0. I know that with IIS7+ you can use: <staticContent> <clientCache cacheControlMode="UseMaxAge" ...
1
vote
0answers
245 views

alternative for mod_pagespeed for IIS [duplicate]

Possible Duplicate: Is there an equivalent to mod_pagespeed appache module but for IIS? Is there an alternative for mod_pagespeed for IIS? I want to do some smart-caching and set the ...
2
votes
2answers
137 views

What support do mobile browsers have for expires headers?

Is there any good documentation of what mobile browsers support expires headers? I'm mostly interested in: iPhone Android Windows Phone 7
0
votes
1answer
858 views

How can I enable expires headers for my static content in my IIS 6 ASP.NET MVC web app?

We are running a ASP.NET MVC 2.0 web app and it's running on Windows Server 2003 with IIS 6.0. I understand it would be easy to implement client caching if we used IIS 7. However, that is something I ...