diff options
author | Christoph <[email protected]> | 2023-10-10 23:18:37 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2023-10-10 21:18:37 +0000 |
commit | e0aaefab80d75293783a5551b094cf57b49da8d5 (patch) | |
tree | b9322f24e0e9e6755aeff283675283640b6a4bd0 /caddytest/integration/caddyfile_adapt | |
parent | fa5a579b6063617d12948860da109cdb8ca63185 (diff) | |
download | caddy-e0aaefab80d75293783a5551b094cf57b49da8d5.tar.gz caddy-e0aaefab80d75293783a5551b094cf57b49da8d5.zip |
encode: Add `application/wasm*` to the default content types (#5869)
Diffstat (limited to 'caddytest/integration/caddyfile_adapt')
-rw-r--r-- | caddytest/integration/caddyfile_adapt/encode_options.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/caddytest/integration/caddyfile_adapt/encode_options.txt b/caddytest/integration/caddyfile_adapt/encode_options.txt index 6f811abff..181bc2264 100644 --- a/caddytest/integration/caddyfile_adapt/encode_options.txt +++ b/caddytest/integration/caddyfile_adapt/encode_options.txt @@ -11,6 +11,7 @@ encode gzip zstd { header Content-Type application/xhtml+xml* header Content-Type application/atom+xml* header Content-Type application/rss+xml* + header Content-Type application/wasm* header Content-Type image/svg+xml* } } @@ -47,6 +48,7 @@ encode { "application/xhtml+xml*", "application/atom+xml*", "application/rss+xml*", + "application/wasm*", "image/svg+xml*" ] }, |