about summary refs log tree commit diff
path: root/dist
diff options
context:
space:
mode:
authorRob Petti <rob.petti@gmail.com>2022-11-06 19:16:44 -0700
committerGitHub <noreply@github.com>2022-11-07 03:16:44 +0100
commit8c81db5a415cce3491cb5d343709db552ad262b6 (patch)
tree8539b5fcbd644a00bea410cf00b10c25dd6944fa /dist
parente53fc34e9abd8d6d3a0907fea2d0f657c5e8666c (diff)
allow /api/v1/streaming to be used as per documentation (#19896)
Diffstat (limited to 'dist')
-rw-r--r--dist/nginx.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/nginx.conf b/dist/nginx.conf
index 716c277dd..5c16693d0 100644
--- a/dist/nginx.conf
+++ b/dist/nginx.conf
@@ -112,7 +112,7 @@ server {
     try_files $uri =404;
   }
 
-  location ^~ /api/v1/streaming/ {
+  location ^~ /api/v1/streaming {
     proxy_set_header Host $host;
     proxy_set_header X-Real-IP $remote_addr;
     proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;