I currently have an app on Heroku Cedar stack running with Unicorn.

I also have CloudFront configured as a custom origin to host my css/js assets. However it seems like no matter which way I configure the static/assets for Rails it will not allow me to set the Cache-Control, Max-Age or Expires headers.

This is important as the headers are pass-through with CloudFront and if I can't set them CloudFront won't cache them properly.

link|improve this question

feedback

1 Answer

Try adding this to your environments/production.rb file.

config.static_cache_control = "public, max-age=3600"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.