Graham Cox
Graham Cox
Hi. I'm glad to do so, but could you clean up the PR a bit so that it only includes the bits that should be merged. Things like disabling tests...
For example, changing it to: ``` type Reason string const ( ..... // The request included an Cache-Control: no-store header ReasonRequestNoStore = "no-store" ..... ) ``` would make the library...
I don't know Go well enough to say for certain, but I *think* that the fact you've got a custom type covers you here. From the point of view of...
My big concern with some of the solutions is - I'd like to be able to host my app on a CDN that only serves static files, whilst at the...
@jakubknejzlik The CDNs that I've looked at serve up static files. They don't let you run server processes to dynamically generate content. This would mean that the files that are...
There are other, standard media types that also warn. For example, I'm using `application/merge-patch+json` for my app and I'm getting these too.
In case it helps, I've managed to get it working as follows: * Download the ARM64 build * Unpack into ~/.gvm/gos/ * Create a file in ~/.gvm/environments/ - just copy...
Being able to disable any caching that Ketting has built-in, and just fall back on the browser cache, would be a simple way to get correct cache behaviour for relatively...
Fair enough - I didn't realise quite how much of Ketting depended on the caching stuff!
Ketting specific headers requires the server author to know/assume that the client is using ketting. Which implies that the two are connected somehow. Things like CORS allows me to write...