From: Eric Wong <bofh@yhbt.net>
To: yahns-public@yhbt.net
Subject: [PATCH] extras/try_gzip_static: set "Vary: Accept-Encoding" on gzip
Date: Sat, 4 Apr 2020 23:50:47 +0000 [thread overview]
Message-ID: <20200404235047.16621-1-bofh@yhbt.net> (raw)
Some rare clients may not support gzip. So ensure cache layers
don't inadvertantly serve cached content to them.
---
| 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
--git a/extras/try_gzip_static.rb b/extras/try_gzip_static.rb
index 4dd435a..a2dd155 100644
--- a/extras/try_gzip_static.rb
+++ b/extras/try_gzip_static.rb
@@ -79,7 +79,10 @@ def fheader(env, path, st, gz_st = nil, len = nil)
"Accept-Ranges" => "bytes",
}
h["Cache-Control"] = "no-transform" unless mime =~ %r{\Atext\/}
- h["Content-Encoding"] = "gzip" if gz_st
+ if gz_st
+ h["Content-Encoding"] = "gzip"
+ h["Vary"] = "Accept-Encoding"
+ end
h
end
reply other threads:[~2020-04-04 23:50 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://yhbt.net/yahns/README
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200404235047.16621-1-bofh@yhbt.net \
--to=bofh@yhbt.net \
--cc=yahns-public@yhbt.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://yhbt.net/yahns.git/
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).