exclude vod endpoints from cache

This commit is contained in:
Blake Blackshear 2023-10-27 18:06:28 -05:00
parent e7d782035d
commit 60b6dc7bca

View File

@ -194,6 +194,12 @@ http {
proxy_cache_bypass $http_x_cache_bypass;
add_header X-Cache-Status $upstream_cache_status;
location /api/vod/ {
proxy_pass http://frigate_api/vod/;
include proxy.conf;
proxy_cache off;
}
location /api/stats {
access_log off;
rewrite ^/api/(.*)$ $1 break;