aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/nginx/peertube
diff options
context:
space:
mode:
Diffstat (limited to 'support/nginx/peertube')
-rw-r--r--support/nginx/peertube4
1 files changed, 3 insertions, 1 deletions
diff --git a/support/nginx/peertube b/support/nginx/peertube
index 0da427037..b00031133 100644
--- a/support/nginx/peertube
+++ b/support/nginx/peertube
@@ -58,12 +58,14 @@ server {
58 root /var/www/certbot; 58 root /var/www/certbot;
59 } 59 }
60 60
61 # Bypass PeerTube for performance reasons. Could be removed
61 location ~ ^/client/(.*\.(js|css|woff2|otf|ttf|woff|eot))$ { 62 location ~ ^/client/(.*\.(js|css|woff2|otf|ttf|woff|eot))$ {
62 add_header Cache-Control "public, max-age=31536000, immutable"; 63 add_header Cache-Control "public, max-age=31536000, immutable";
63 64
64 alias /var/www/peertube/peertube-latest/client/dist/$1; 65 alias /var/www/peertube/peertube-latest/client/dist/$1;
65 } 66 }
66 67
68 # Bypass PeerTube for performance reasons. Could be removed
67 location ~ ^/static/(thumbnails|avatars)/ { 69 location ~ ^/static/(thumbnails|avatars)/ {
68 if ($request_method = 'OPTIONS') { 70 if ($request_method = 'OPTIONS') {
69 add_header 'Access-Control-Allow-Origin' '*'; 71 add_header 'Access-Control-Allow-Origin' '*';
@@ -102,7 +104,7 @@ server {
102 send_timeout 600; 104 send_timeout 600;
103 } 105 }
104 106
105 # Bypass PeerTube webseed route for better performances 107 # Bypass PeerTube for performance reasons. Could be removed
106 location /static/webseed { 108 location /static/webseed {
107 # Clients usually have 4 simultaneous webseed connections, so the real limit is 3MB/s per client 109 # Clients usually have 4 simultaneous webseed connections, so the real limit is 3MB/s per client
108 limit_rate 800k; 110 limit_rate 800k;