From f5c4bfa7b4007b56e93a93ec780479189923cd28 Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Mon, 30 Nov 2020 07:56:19 -0600 Subject: [PATCH] serve up recordings with nginx --- nginx/nginx.conf | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index b6ae3dd13..ca1019cb9 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -75,6 +75,27 @@ http { root /media/frigate; } + location /recordings/ { + add_header 'Access-Control-Allow-Origin' "$http_origin" always; + add_header 'Access-Control-Allow-Credentials' 'true'; + add_header 'Access-Control-Expose-Headers' 'Content-Length'; + if ($request_method = 'OPTIONS') { + add_header 'Access-Control-Allow-Origin' "$http_origin"; + add_header 'Access-Control-Max-Age' 1728000; + add_header 'Content-Type' 'text/plain charset=UTF-8'; + add_header 'Content-Length' 0; + return 204; + } + + types { + video/mp4 mp4; + } + + autoindex on; + autoindex_format json; + root /media/frigate; + } + location / { proxy_pass http://frigate_api/; proxy_pass_request_headers on;