mirror of
https://github.com/caddyserver/caddy.git
synced 2025-05-22 09:39:58 +08:00
httpcaddyfile: Add compression
to http transport config (#3624)
* httpcaddyfile: Add `compression` to http transport config * Add caddyfile adapt test for typical h2c setup
This commit is contained in:
@ -719,6 +719,14 @@ func (h *HTTPTransport) UnmarshalCaddyfile(d *caddyfile.Dispenser) error {
|
||||
return d.ArgErr()
|
||||
}
|
||||
|
||||
case "compression":
|
||||
if d.NextArg() {
|
||||
if d.Val() == "off" {
|
||||
var disable bool
|
||||
h.Compression = &disable
|
||||
}
|
||||
}
|
||||
|
||||
default:
|
||||
return d.Errf("unrecognized subdirective %s", d.Val())
|
||||
}
|
||||
|
Reference in New Issue
Block a user