From 00c3d6707762262850a08b7d3b5dcd1dd160c9ee Mon Sep 17 00:00:00 2001 From: Francis Lavoie Date: Fri, 15 May 2020 10:01:42 -0400 Subject: [PATCH] docs: Remove brotli from `encode` page (#40) --- src/docs/markdown/caddyfile/directives/encode.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/docs/markdown/caddyfile/directives/encode.md b/src/docs/markdown/caddyfile/directives/encode.md index f333206..94d64fa 100644 --- a/src/docs/markdown/caddyfile/directives/encode.md +++ b/src/docs/markdown/caddyfile/directives/encode.md @@ -12,14 +12,12 @@ Encodes responses using the configured encoding(s). A typical use for encoding i encode [] { gzip [] zstd - brotli [] } ``` - **<formats...>** is the list of encoding formats to enable. - **gzip** enables Gzip compression, optionally at the specified level. - **zstd** enables Zstandard compression. -- **brotli** enables on-the-fly Brotli compression, but be aware that Brotli compression is not designed to be fast and the current Go implementation is not efficient. Use only for testing and development. _We might remove this option in the future. Do not use in production. Not subject to compatibility promises._ To use brotli compression, pre-compress your assets and serve those instead. ## Examples