diff options
Diffstat (limited to 'support/nginx/peertube')
-rw-r--r-- | support/nginx/peertube | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/support/nginx/peertube b/support/nginx/peertube deleted file mode 100644 index 8120738f6..000000000 --- a/support/nginx/peertube +++ /dev/null | |||
@@ -1,51 +0,0 @@ | |||
1 | server { | ||
2 | listen 80; | ||
3 | server_name domain.tld; | ||
4 | |||
5 | location / { | ||
6 | proxy_pass http://localhost:9000; | ||
7 | proxy_set_header X-Real-IP $remote_addr; | ||
8 | proxy_set_header Host $host; | ||
9 | proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | ||
10 | |||
11 | # For the video upload | ||
12 | client_max_body_size 2G; | ||
13 | proxy_connect_timeout 600; | ||
14 | proxy_send_timeout 600; | ||
15 | proxy_read_timeout 600; | ||
16 | } | ||
17 | |||
18 | # Bypass PeerTube webseed route for better performances | ||
19 | location /static/webseed { | ||
20 | if ($request_method = 'OPTIONS') { | ||
21 | add_header 'Access-Control-Allow-Origin' '*'; | ||
22 | add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS'; | ||
23 | add_header 'Access-Control-Allow-Headers' 'Range,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type'; | ||
24 | add_header 'Access-Control-Max-Age' 1728000; | ||
25 | add_header 'Content-Type' 'text/plain charset=UTF-8'; | ||
26 | add_header 'Content-Length' 0; | ||
27 | return 204; | ||
28 | } | ||
29 | |||
30 | if ($request_method = 'GET') { | ||
31 | add_header 'Access-Control-Allow-Origin' '*'; | ||
32 | add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS'; | ||
33 | add_header 'Access-Control-Allow-Headers' 'Range,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type'; | ||
34 | } | ||
35 | |||
36 | alias /your/installation/PeerTube/videos; | ||
37 | } | ||
38 | |||
39 | # Websocket tracker | ||
40 | location /tracker/socket { | ||
41 | # Peers send a message to the tracker every 15 minutes | ||
42 | # Don't close the websocket before this time | ||
43 | proxy_read_timeout 1200s; | ||
44 | proxy_set_header Upgrade $http_upgrade; | ||
45 | proxy_set_header Connection "upgrade"; | ||
46 | proxy_http_version 1.1; | ||
47 | proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | ||
48 | proxy_set_header Host $host; | ||
49 | proxy_pass http://localhost:9000; | ||
50 | } | ||
51 | } | ||