Update NGinx that bypass /static/webseed (better performances)
authorChocobozzz <florian.bigard@gmail.com>
Mon, 10 Oct 2016 19:21:19 +0000 (21:21 +0200)
committerChocobozzz <florian.bigard@gmail.com>
Mon, 10 Oct 2016 19:21:19 +0000 (21:21 +0200)
support/nginx/peertube

index 21939c3600697ac4abd3e444d3be512ec549cb94..0f7fcb494af27083605f0523399b35bb94569735 100644 (file)
@@ -12,6 +12,27 @@ server {
     client_max_body_size 100m;
   }
 
+  # Bypass PeerTube webseed route for better performances
+  location /static/webseed {
+    if ($request_method = 'OPTIONS') {
+      add_header 'Access-Control-Allow-Origin' '*';
+      add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS';
+      add_header 'Access-Control-Allow-Headers' 'Range,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
+      add_header 'Access-Control-Max-Age' 1728000;
+      add_header 'Content-Type' 'text/plain charset=UTF-8';
+      add_header 'Content-Length' 0;
+      return 204;
+    }
+
+    if ($request_method = 'GET') {
+      add_header 'Access-Control-Allow-Origin' '*';
+      add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS';
+      add_header 'Access-Control-Allow-Headers' 'Range,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
+    }
+
+    alias /your/installation/PeerTube/uploads;
+  }
+
   # Websocket tracker
   location /tracker/socket {
     # Peers send a message to the tracker every 15 minutes