Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
| Comment: | Set cache-control only for images
A bit of an intermediate commit, just investigating what works. I think really "image" "max-age=604800" The bit I'm then missing is how to set a catch all or "owtelse" cache-control? |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
dda2552f490e3374281ecbd09738fd89 |
| User & Date: | atomicules 2017-11-25 22:13:18.308 |
|
2017-12-02
| ||
| 22:37 |
Use existing content_map to provide cache control header per file type
Ideally I'd prefer to do it with a regex or partial match on the content type, but everything is already setup for us to piggyback on this instead. I.e. I'd like to do multiple arguments like this: -h "image" "private, max-age=604800" -h "css" "private, max-age=86400" or a single argument where we split the string on a comma: -h "image,css" "private, max-age=604800" but instead I am happy enough to be able to do: -h .jpg "private, max-age=604800" -h .png "private, max-age=86400" It's good enough for what I want to stop here. - Adds a new cache-bozo.c file | |
|
2017-11-25
| ||
| 22:13 |
Set cache-control only for images
A bit of an intermediate commit, just investigating what works. I think really "image" "max-age=604800" The bit I'm then missing is how to set a catch all or "owtelse" cache-control? | |
| 19:08 |
Initial work on setting Cache-Control headers
The bit that foxed me was understanding getopts and that the "h" needed a ":" This definitely and utterly sets a header. It doesn't seem that it's recognised - https://developers.google.com/speed/pagespeed/insights/ and here: - http://highloadtools.com/cachecontrol But what can you do? At the moment this just sets a header everywhere for everything being served. | |