]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - support/nginx/peertube
fix route prefix for video redundancy routes in openapi spec
[github/Chocobozzz/PeerTube.git] / support / nginx / peertube
index 00ce1d0dc73611c29abc30d1439572575bc7680e..7c95c130c2f46fe5496c7be37e073363f60e1c29 100644 (file)
@@ -78,6 +78,13 @@ server {
     try_files /dev/null @api;
   }
 
+  location = /api/v1/videos/upload-resumable {
+    client_max_body_size    0;
+    proxy_request_buffering off;
+
+    try_files /dev/null @api;
+  }
+
   location = /api/v1/videos/upload {
     limit_except POST HEAD { deny all; }