From 54a0e45232e4353c435256f916f96010b1467c42 Mon Sep 17 00:00:00 2001 From: Justin Dhillon Date: Tue, 21 Nov 2023 23:07:23 -0800 Subject: [PATCH] fixed broken link https://www.nginx.com/resources/wiki/start/topics/examples/xsendfile/ --- frigate/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/http.py b/frigate/http.py index 7d77a53c5..514d6fb19 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -1753,7 +1753,7 @@ def recording_clip(camera_name, start_ts, end_ts): response.headers["Content-Length"] = os.path.getsize(path) response.headers[ "X-Accel-Redirect" - ] = f"/cache/{file_name}" # nginx: http://wiki.nginx.org/NginxXSendfile + ] = f"/cache/{file_name}" # nginx: https://www.nginx.com/resources/wiki/start/topics/examples/xsendfile/ return response