diff --git a/support/nginx/peertube b/support/nginx/peertube index 25c786a86..ceb434390 100644 --- a/support/nginx/peertube +++ b/support/nginx/peertube @@ -158,7 +158,9 @@ server { location ~ ^/client/(assets/images/(icons/icon-36x36\.png|icons/icon-48x48\.png|icons/icon-72x72\.png|icons/icon-96x96\.png|icons/icon-144x144\.png|icons/icon-192x192\.png|icons/icon-512x512\.png|logo\.svg|favicon\.png))$ { add_header Cache-Control "public, max-age=31536000, immutable"; # Cache 1 year - try_files /client-overrides/$1 $uri; + root /var/www/peertube; + + try_files /storage/client-overrides/$1 /peertube-latest/client/dist/$1 /; } # Bypass PeerTube for performance reasons. Optional.