]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - support/nginx/peertube
Prevent error with metrics in HTTP player
[github/Chocobozzz/PeerTube.git] / support / nginx / peertube
index 5d7b4f0f0c5ac375ac09baf26153d9b663ae2ce0..cf200ba00262d705ca0b2efa50f24d55f0dc9613 100644 (file)
@@ -85,7 +85,7 @@ server {
     try_files /dev/null @api;
   }
 
-  location = /api/v1/videos/upload {
+  location ~ ^/api/v1/videos/(upload|([^/]+/studio/edit))$ {
     limit_except POST HEAD { deny all; }
 
     # This is the maximum upload size, which roughly matches the maximum size of a video file.
@@ -132,6 +132,11 @@ server {
     try_files /dev/null @api_websocket;
   }
 
+  # Plugin websocket routes
+  location ~ ^/plugins/[^/]+(/[^/]+)?/ws/ {
+    try_files /dev/null @api_websocket;
+  }
+
   ##
   # Performance optimizations
   # For extra performance please refer to https://github.com/denji/nginx-tuning
@@ -209,6 +214,10 @@ server {
     try_files $uri @api;
   }
 
+  location ~ ^/static/(webseed|streaming-playlists)/private/ {
+    try_files /dev/null @api;
+  }
+
   # Bypass PeerTube for performance reasons. Optional.
   location ~ ^/static/(webseed|redundancy|streaming-playlists)/ {
     limit_rate_after            5M;