From: Chocobozzz Date: Thu, 18 Jan 2018 17:45:27 +0000 (+0100) Subject: Don't serve previews with nginx X-Git-Tag: v0.0.13-alpha~2 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2e866cc75de7f34aeca4575d8dea1af597131563;p=oweals%2Fpeertube.git Don't serve previews with nginx We need to maintain a cache in the node process --- diff --git a/support/doc/production.md b/support/doc/production.md index 2d746bba5..de5d67b4e 100644 --- a/support/doc/production.md +++ b/support/doc/production.md @@ -103,7 +103,7 @@ server { alias /home/peertube/peertube-latest/client/dist/$1; } - location ~ ^/static/(thumbnails|avatars|previews)/(.*)$ { + location ~ ^/static/(thumbnails|avatars)/(.*)$ { add_header Cache-Control "public, max-age=31536000, immutable"; alias /home/peertube/storage/$1/$2; diff --git a/support/nginx/peertube b/support/nginx/peertube index 8973f2f24..098818e57 100644 --- a/support/nginx/peertube +++ b/support/nginx/peertube @@ -29,7 +29,7 @@ server { alias /home/peertube/peertube-latest/client/dist/$1; } - location ~ ^/static/(thumbnails|avatars|previews)/(.*)$ { + location ~ ^/static/(thumbnails|avatars)/(.*)$ { add_header Cache-Control "public, max-age=31536000, immutable"; alias /home/peertube/storage/$1/$2;