diff options
author | Chocobozzz <me@florianbigard.com> | 2018-07-24 18:02:23 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-07-24 18:03:40 +0200 |
commit | a8bf1d826e379dec03d25840c7c49c1f30168380 (patch) | |
tree | 5f122d1012f1e3267f218c0e8f155674454ca8d0 /support | |
parent | a8981e0b24ad41d9124344a780d878b08cef173b (diff) | |
download | PeerTube-a8bf1d826e379dec03d25840c7c49c1f30168380.tar.gz PeerTube-a8bf1d826e379dec03d25840c7c49c1f30168380.tar.zst PeerTube-a8bf1d826e379dec03d25840c7c49c1f30168380.zip |
404 on unknown thumbnail
Diffstat (limited to 'support')
-rw-r--r-- | support/nginx/peertube | 15 |
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 / { |