Fix nginx config
authorChocobozzz <me@florianbigard.com>
Tue, 10 Dec 2019 15:39:22 +0000 (16:39 +0100)
committerChocobozzz <me@florianbigard.com>
Tue, 10 Dec 2019 15:39:22 +0000 (16:39 +0100)
CORS headers were removed. See https://www.nginx.com/resources/wiki/start/topics/depth/ifisevil/

support/nginx/peertube

index a1cdc22217069e6ea35efd922f2c11d406bbd7fa..a278524ba457d3e518793be053149ab464aee90e 100644 (file)
@@ -120,6 +120,19 @@ server {
 
   # Bypass PeerTube for performance reasons. Could be removed
   location ~ ^/static/(webseed|redundancy|streaming-playlists)/ {
+    # Clients usually have 4 simultaneous webseed connections, so the real limit is 3MB/s per client
+    set $peertube_limit_rate 800k;
+
+    # Increase rate limit in HLS mode, because we don't have multiple simultaneous connections
+    if ($request_uri ~ -fragmented.mp4$) {
+      set $peertube_limit_rate 5000k;
+    }
+
+    # Use this with nginx >= 1.17.0
+    # limit_rate $peertube_limit_rate;
+    # Or this if your nginx < 1.17.0
+    set $limit_rate $peertube_limit_rate;
+    limit_rate_after 5000k;
 
     if ($request_method = 'OPTIONS') {
       add_header 'Access-Control-Allow-Origin' '*';
@@ -140,20 +153,6 @@ server {
       access_log off;
     }
 
-    # Clients usually have 4 simultaneous webseed connections, so the real limit is 3MB/s per client
-    set $peertube_limit_rate 800k;
-
-    # Increase rate limit in HLS mode, because we don't have multiple simultaneous connections
-    if ($request_uri ~ -fragmented.mp4$) {
-      set $peertube_limit_rate 5000k;
-    }
-
-    # Use this with nginx >= 1.17.0
-    # limit_rate $peertube_limit_rate;
-    # Or this if your nginx < 1.17.0
-    set $limit_rate $peertube_limit_rate;
-    limit_rate_after 5000k;
-
     root /var/www/peertube/storage;
 
     rewrite ^/static/webseed/(.*)$ /videos/$1 break;