Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
caddy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
caddy
Commits
34d3cd7c
Commit
34d3cd7c
authored
Dec 15, 2015
by
Craig Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Gzip: Append to Vary header instead of replacing.
parent
f11cd4d9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
middleware/gzip/gzip.go
middleware/gzip/gzip.go
+1
-1
No files found.
middleware/gzip/gzip.go
View file @
34d3cd7c
...
...
@@ -113,7 +113,7 @@ type gzipResponseWriter struct {
func
(
w
gzipResponseWriter
)
WriteHeader
(
code
int
)
{
w
.
Header
()
.
Del
(
"Content-Length"
)
w
.
Header
()
.
Set
(
"Content-Encoding"
,
"gzip"
)
w
.
Header
()
.
Set
(
"Vary"
,
"Accept-Encoding"
)
w
.
Header
()
.
Add
(
"Vary"
,
"Accept-Encoding"
)
w
.
ResponseWriter
.
WriteHeader
(
code
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment