From 63854297a87f166c80e08728275062cc2b4f6c6e Mon Sep 17 00:00:00 2001 From: Aetherinox Date: Sat, 31 May 2025 03:59:57 -0700 Subject: [PATCH] docs(readme): add jellyfin warning for `WEB_ENCODING` environment variable Adding `gzip` to the list of accept-encoding has been known to break Jellyfin users. WEB_ENCODING=gzip, deflate, br --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 964ab0f5..4c1f076a 100644 --- a/README.md +++ b/README.md @@ -181,7 +181,7 @@ The following is a list of environment variables you can declare within your `do | `WEB_IP` | `0.0.0.0` | IP to use for webserver | | `WEB_PORT` | `4124` | Port to use for webserver | | `WEB_FOLDER` | `www` | Internal container folder to keep TVApp2 web files in.

⚠️ This should not be used unless you know what you're doing | -| `WEB_ENCODING` | `deflate, br` | Defines the HTTP `Accept-Encoding` request and response header. This value specifies what content encoding the sender can understand

Gzip compression can be enabled by specifying `'gzip, deflate, br'` | +| `WEB_ENCODING` | `deflate, br` | Defines the HTTP `Accept-Encoding` request and response header. This value specifies what content encoding the sender can understand

Gzip compression can be enabled by specifying `'gzip, deflate, br'`, however, it may break Jellyfin users. | | `WEB_PROXY_HEADER` | `x-forwarded-for` | Defines the header to look for when finding a client's IP address. Used to get a client's IP when behind a reverse proxy or Cloudflare | | `URL_REPO` | `https://git.binaryninja.net/BinaryNinja/` | Determines where the data files will be downloaded from. Do not change this or you will be unable to get M3U and EPG data. | | `FILE_URL` | `urls.txt` | Filename for `urls.txt` cache file | @@ -1240,7 +1240,7 @@ This docker container contains the following env variables: | `WEB_IP` | `0.0.0.0` | IP to use for webserver | | `WEB_PORT` | `4124` | Port to use for webserver | | `WEB_FOLDER` | `www` | Internal container folder to keep TVApp2 web files in.

⚠️ This should not be used unless you know what you're doing | -| `WEB_ENCODING` | `deflate, br` | Defines the HTTP `Accept-Encoding` request and response header. This value specifies what content encoding the sender can understand

Gzip compression can be enabled by specifying `'gzip, deflate, br'` | +| `WEB_ENCODING` | `deflate, br` | Defines the HTTP `Accept-Encoding` request and response header. This value specifies what content encoding the sender can understand

Gzip compression can be enabled by specifying `'gzip, deflate, br'`, however, it may break Jellyfin users. | | `WEB_PROXY_HEADER` | `x-forwarded-for` | Defines the header to look for when finding a client's IP address. Used to get a client's IP when behind a reverse proxy or Cloudflare | | `URL_REPO` | `https://git.binaryninja.net/BinaryNinja/` | Determines where the data files will be downloaded from. Do not change this or you will be unable to get M3U and EPG data. | | `FILE_URL` | `urls.txt` | Filename for `urls.txt` cache file |