aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/nginx/peertube
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-07-24 18:02:23 +0200
committerChocobozzz <me@florianbigard.com>2018-07-24 18:03:40 +0200
commita8bf1d826e379dec03d25840c7c49c1f30168380 (patch)
tree5f122d1012f1e3267f218c0e8f155674454ca8d0 /support/nginx/peertube
parenta8981e0b24ad41d9124344a780d878b08cef173b (diff)
downloadPeerTube-a8bf1d826e379dec03d25840c7c49c1f30168380.tar.gz
PeerTube-a8bf1d826e379dec03d25840c7c49c1f30168380.tar.zst
PeerTube-a8bf1d826e379dec03d25840c7c49c1f30168380.zip
404 on unknown thumbnail
Diffstat (limited to 'support/nginx/peertube')
-rw-r--r--support/nginx/peertube15
1 files changed, 8 insertions, 7 deletions
diff --git a/support/nginx/peertube b/support/nginx/peertube
index 201d95ea2..01506c7aa 100644
--- a/support/nginx/peertube
+++ b/support/nginx/peertube
@@ -53,7 +53,7 @@ server {
53 alias /var/www/peertube/peertube-latest/client/dist/$1; 53 alias /var/www/peertube/peertube-latest/client/dist/$1;
54 } 54 }
55 55
56 location ~ ^/static/(thumbnails|avatars)/(.*)$ { 56 location ~ ^/static/(thumbnails|avatars)/ {
57 if ($request_method = 'OPTIONS') { 57 if ($request_method = 'OPTIONS') {
58 add_header 'Access-Control-Allow-Origin' '*'; 58 add_header 'Access-Control-Allow-Origin' '*';
59 add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS'; 59 add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS';
@@ -64,16 +64,17 @@ server {
64 return 204; 64 return 204;
65 } 65 }
66 66
67 if ($request_method = 'GET') { 67 add_header 'Access-Control-Allow-Origin' '*';
68 add_header 'Access-Control-Allow-Origin' '*'; 68 add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS';
69 add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS'; 69 add_header 'Access-Control-Allow-Headers' 'Range,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
70 add_header 'Access-Control-Allow-Headers' 'Range,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
71 }
72 70
73 # Cache 2 hours 71 # Cache 2 hours
74 add_header Cache-Control "public, max-age=7200"; 72 add_header Cache-Control "public, max-age=7200";
75 73
76 alias /var/www/peertube/storage/$1/$2; 74 root /var/www/peertube/storage;
75
76 rewrite ^/static/(thumbnails|avatars)/(.*)$ /$1/$2 break;
77 try_files $uri /;
77 } 78 }
78 79
79 location / { 80 location / {