Is it possible to set different cache-control headers for CDN and browser? Currently, I am using
header("Cache-Control: max-age=3600, public");
Since, I am using public, I believe that both browser and the CDN are caching the page for 1 hour. I have origin pull set on the CDN, so that the CDN server will retrieve the page from the web host.
I want the clients cache for 10 minutes and CDN to cache for one hour. is that possible?
If that is not possible, I dont want the browsers to cache the content at all, but the CDN to once every hour.