From 3c0c32ee8259a1a5a4b72e41e94ff25d720a47f4 Mon Sep 17 00:00:00 2001 From: Justin Dhillon Date: Wed, 22 Nov 2023 10:43:21 -0800 Subject: [PATCH] fixed broken link https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_ignore_headers --- frigate/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/http.py b/frigate/http.py index 4355d73fe..f3238f192 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -876,7 +876,7 @@ def event_clip(id): response.headers["Content-Length"] = os.path.getsize(clip_path) response.headers[ "X-Accel-Redirect" - ] = f"/clips/{file_name}" # nginx: https://www.nginx.com/resources/wiki/start/topics/examples/xsendfile/ + ] = f"/clips/{file_name}" # nginx: https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_ignore_headers return response