From 1f0f84c27ecadeb02d5ac0b188d73b84c7c40f60 Mon Sep 17 00:00:00 2001
From: Chocobozzz <florian.bigard@gmail.com>
Date: Mon, 10 Oct 2016 21:21:19 +0200
Subject: Update NGinx that bypass /static/webseed (better performances)

---
 support/nginx/peertube | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

(limited to 'support/nginx/peertube')

diff --git a/support/nginx/peertube b/support/nginx/peertube
index 21939c360..0f7fcb494 100644
--- a/support/nginx/peertube
+++ b/support/nginx/peertube
@@ -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
-- 
cgit v1.2.3