fix internal redirection cycle whithin nginx client-override optimization

This commit is contained in:
Rigel Kent 2020-11-17 11:40:14 +01:00
parent 5f59cf077f
commit 901c36d5f4
No known key found for this signature in database
GPG Key ID: 5E53E96A494E452F
1 changed files with 3 additions and 1 deletions

View File

@ -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.