Results 217 comments of darkweak

Refer to https://github.com/CMEPW/Smersh/pull/128

Hello, I could work on it. As I already done a middleware for lot of reverse-proxies/APIM to implement a fully RFC compliant cache system called Souin I think it would...

@divine note this PR https://github.com/darkweak/souin/pull/283 Anyway, TBH the api platform team won't merge this PR I guess.

In the Souin codebase we support the stale-if-error directive

@fliespl you may use the `mode bypass_response` to bypass the response RFC checks. Or you could use the `header_down` caddy file directive to remove the cache-control response header.

I'm not sure but it could be something like this (cc @francislavoie about `header_down` reverse_proxy): ``` route { cache reverse_proxy 127.0.0.1:81 { header_down -Cache-Control } } ``` Or using the...

If your request doesn't send a `stale-if-error` directive the HTTP cache won't serve the stale response because the client doesn't allow it as explained in the RFC 7234. But reading...