Also interesting that I had to write my cache headers like that:
handle {
header Cache-Control max-age=3600
}
handle /static/* {
header Cache-Control max-age=31536000
}
handle /favicon.ico {
header Cache-Control max-age=31536000
}
instead of much simpler:
header * Cache-Control max-age=3600
header /static/* Cache-Control max-age=31536000
header /favicon.ico Cache-Control max-age=31536000
since in this case main header overrides everything. Not sure if that’s expected?