From f37db8966d60403c7483d4597007830ee3d05ca9 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 10 Dec 2019 12:11:20 +0100 Subject: Add streaming playlists endpoint in nginx --- support/nginx/peertube | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) (limited to 'support/nginx/peertube') diff --git a/support/nginx/peertube b/support/nginx/peertube index 05f172280..a1cdc2221 100644 --- a/support/nginx/peertube +++ b/support/nginx/peertube @@ -119,9 +119,7 @@ server { } # Bypass PeerTube for performance reasons. Could be removed - location ~ ^/static/(webseed|redundancy)/ { - # Clients usually have 4 simultaneous webseed connections, so the real limit is 3MB/s per client - limit_rate 800k; + location ~ ^/static/(webseed|redundancy|streaming-playlists)/ { if ($request_method = 'OPTIONS') { add_header 'Access-Control-Allow-Origin' '*'; @@ -142,10 +140,25 @@ 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; rewrite ^/static/redundancy/(.*)$ /redundancy/$1 break; + rewrite ^/static/streaming-playlists/(.*)$ /streaming-playlists/$1 break; try_files $uri /; } -- cgit v1.2.3