Update NGinx that bypass /static/webseed (better performances)

pull/15/head
Chocobozzz 2016-10-10 21:21:19 +02:00
parent 3474b77cbf
commit 1f0f84c27e
1 changed files with 21 additions and 0 deletions

View File

@ -12,6 +12,27 @@ server {
client_max_body_size 100m;
}
# Bypass PeerTube webseed route for better performances
location /static/webseed {
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'Range,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain charset=UTF-8';
add_header 'Content-Length' 0;
return 204;
}
if ($request_method = 'GET') {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'Range,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
}
alias /your/installation/PeerTube/uploads;
}
# Websocket tracker
location /tracker/socket {
# Peers send a message to the tracker every 15 minutes