From eeecc81aa0290e6592e07d7886e0c1402b8319dd Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Tue, 24 Dec 2024 12:57:10 +0100 Subject: [PATCH] docs: add "cacheIgnoreHeaders" configuration property documentation for SVR.JS Cache mod --- pages/docs/mod-notes.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pages/docs/mod-notes.md b/pages/docs/mod-notes.md index 90dcb44..a6a1aa1 100644 --- a/pages/docs/mod-notes.md +++ b/pages/docs/mod-notes.md @@ -186,7 +186,9 @@ SVR.JS Cache mod is a simple in-memory cache mod for SVR.JS that works with "Cac This mod adds these SVR.JS configuration properties: - _cacheVaryHeaders_ (Array of Strings) - - A list of headers that can vary in a cache. Supplements the "Vary" response header. + - A list of request headers that can vary in a cache. Supplements the "Vary" response header. +- _cacheIgnoreHeaders_ (Array of Strings, SVR.JS Cache mod 1.1.0 or newer) + - A list of response headers that will not be stored in a cache. - _maximumCacheResponseSize_ (Number or `null`) - A maximum response size to be cached in bytes. If `null`, the maximum response size is limited to the maximum size of JavaScript strings.