From 81a41285b7f80b9e88337fe2e1ff6d9211658a86 Mon Sep 17 00:00:00 2001 From: mitch ross Date: Wed, 12 May 2021 10:23:38 -0400 Subject: [PATCH] CORS update --- nginx/nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 51842cb70..06760a08e 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -112,6 +112,7 @@ http { location /api/ { add_header 'Access-Control-Allow-Origin' '*'; + add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS'; add_header Cache-Control "no-store"; proxy_pass http://frigate_api/; proxy_pass_request_headers on;