summaryrefslogtreecommitdiff
path: root/modules/caddyhttp/staticresp.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/caddyhttp/staticresp.go')
-rw-r--r--modules/caddyhttp/staticresp.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/caddyhttp/staticresp.go b/modules/caddyhttp/staticresp.go
index dfb3277..f48fcea 100644
--- a/modules/caddyhttp/staticresp.go
+++ b/modules/caddyhttp/staticresp.go
@@ -33,10 +33,11 @@ func (s Static) ServeHTTP(w http.ResponseWriter, r *http.Request) error {
// set all headers
for field, vals := range s.Headers {
field = repl.ReplaceAll(field, "")
+ newVals := make([]string, len(vals))
for i := range vals {
- vals[i] = repl.ReplaceAll(vals[i], "")
+ newVals[i] = repl.ReplaceAll(vals[i], "")
}
- w.Header()[field] = vals
+ w.Header()[field] = newVals
}
// do not allow Go to sniff the content-type