Ruby on Rails
Monday, May 16, 2016
I'm trying to provide etag and last-modified headers for static page.
Locally it works fine and browser gets a 304, however on server with passenger standalone it's not providing a 304.
https://gist.github.com/NeoElit/dd8d9f22142db12cee077723b7cd8bf5
From http://stackoverflow.com/questions/18693718/weak-etags-in-rails it's clear that even if i give strong etag it's getting converted to weak etag, the browser request response headers is listed in the following gist:
https://gist.github.com/NeoElit/dd8d9f22142db12cee077723b7cd8bf5
The interesting fact is that the weak header is not even in the rails request env. However if modify the etag from browser and send as strong etag, it's getting to rails env.
How can I resolve the issue so as to give a 304?
-- Locally it works fine and browser gets a 304, however on server with passenger standalone it's not providing a 304.
https://gist.github.com/NeoElit/dd8d9f22142db12cee077723b7cd8bf5
From http://stackoverflow.com/questions/18693718/weak-etags-in-rails it's clear that even if i give strong etag it's getting converted to weak etag, the browser request response headers is listed in the following gist:
https://gist.github.com/NeoElit/dd8d9f22142db12cee077723b7cd8bf5
The interesting fact is that the weak header is not even in the rails request env. However if modify the etag from browser and send as strong etag, it's getting to rails env.
How can I resolve the issue so as to give a 304?
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/0d0d7f69-1091-456c-b3cc-6586029d8609%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment