diff options
Diffstat (limited to 'support/nginx/peertube')
-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 / { |