Update tube.conf

This commit is contained in:
Anthony Wang 2021-05-23 21:58:43 +00:00 committed by GitHub
parent bac582c57d
commit e462da97c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -168,7 +168,7 @@ 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
root /var/lib/peertube;
root /usr/share/webapps/peertube;
try_files /storage/client-overrides/$1 /peertube-latest/client/dist/$1 @api;
}
@ -177,7 +177,7 @@ server {
location ~ ^/client/(.*\.(js|css|png|svg|woff2|otf|ttf|woff|eot))$ {
add_header Cache-Control "public, max-age=31536000, immutable"; # Cache 1 year
alias /var/lib/peertube/peertube-latest/client/dist/$1;
alias /usr/share/webapps/peertube/client/dist/$1;
}
# Bypass PeerTube for performance reasons. Optional.