diff options
author | Rob Petti <rob.petti@gmail.com> | 2022-11-06 19:16:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-07 03:16:44 +0100 |
commit | 8c81db5a415cce3491cb5d343709db552ad262b6 (patch) | |
tree | 8539b5fcbd644a00bea410cf00b10c25dd6944fa | |
parent | e53fc34e9abd8d6d3a0907fea2d0f657c5e8666c (diff) |
allow /api/v1/streaming to be used as per documentation (#19896)
-rw-r--r-- | dist/nginx.conf | 2 |
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; |