]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - support/nginx/peertube
Fix UI regressions
[github/Chocobozzz/PeerTube.git] / support / nginx / peertube
CommitLineData
c97eea23
C
1server {
2 listen 80;
e883399f
RK
3 listen [::]:80;
4 server_name peertube.example.com;
d2000ca6 5
e883399f
RK
6 access_log /var/log/nginx/peertube.example.com.access.log;
7 error_log /var/log/nginx/peertube.example.com.error.log;
5668bf2e 8
0b495712
C
9 location /.well-known/acme-challenge/ {
10 default_type "text/plain";
11 root /var/www/certbot;
12 }
d2000ca6 13 location / { return 301 https://$host$request_uri; }
c97eea23
C
14}
15
16server {
85cd9bde 17 listen 443 ssl http2;
e883399f
RK
18 listen [::]:443 ssl http2;
19 server_name peertube.example.com;
c97eea23 20
0b495712 21 # For example with certbot (you need a certificate to run https)
e883399f
RK
22 ssl_certificate /etc/letsencrypt/live/peertube.example.com/fullchain.pem;
23 ssl_certificate_key /etc/letsencrypt/live/peertube.example.com/privkey.pem;
0b495712 24
e883399f 25 # Security hardening (as of 11/02/2018)
0b495712 26 ssl_protocols TLSv1.2; # TLSv1.3, TLSv1.2 if nginx >= 1.13.0
e883399f
RK
27 ssl_prefer_server_ciphers on;
28 ssl_ciphers 'ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256';
4919b630 29 # ssl_ecdh_curve secp384r1; # Requires nginx >= 1.1.0, not compatible with import-videos script
e883399f
RK
30 ssl_session_timeout 10m;
31 ssl_session_cache shared:SSL:10m;
32 ssl_session_tickets off; # Requires nginx >= 1.5.9
33 ssl_stapling on; # Requires nginx >= 1.3.7
34 ssl_stapling_verify on; # Requires nginx => 1.3.7
0b495712
C
35
36 # Configure with your resolvers
37 # resolver $DNS-IP-1 $DNS-IP-2 valid=300s;
38 # resolver_timeout 5s;
39
e883399f 40 add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload";
34b19192 41
e883399f
RK
42 access_log /var/log/nginx/peertube.example.com.access.log;
43 error_log /var/log/nginx/peertube.example.com.error.log;
5668bf2e 44
e883399f
RK
45 location ^~ '/.well-known/acme-challenge' {
46 default_type "text/plain";
47 root /var/www/certbot;
48 }
c97eea23 49
5668bf2e
C
50 location ~ ^/client/(.*\.(js|css|woff2|otf|ttf|woff|eot))$ {
51 add_header Cache-Control "public, max-age=31536000, immutable";
52
59c48d49 53 alias /var/www/peertube/peertube-latest/client/dist/$1;
5668bf2e
C
54 }
55
2e866cc7 56 location ~ ^/static/(thumbnails|avatars)/(.*)$ {
7f8db30c
C
57 if ($request_method = 'OPTIONS') {
58 add_header 'Access-Control-Allow-Origin' '*';
59 add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS';
60 add_header 'Access-Control-Allow-Headers' 'Range,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
61 add_header 'Access-Control-Max-Age' 1728000;
62 add_header 'Content-Type' 'text/plain charset=UTF-8';
63 add_header 'Content-Length' 0;
64 return 204;
65 }
66
67 if ($request_method = 'GET') {
68 add_header 'Access-Control-Allow-Origin' '*';
69 add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS';
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
57a81ff6
C
73 # Cache 2 hours
74 add_header Cache-Control "public, max-age=7200";
5668bf2e 75
59c48d49 76 alias /var/www/peertube/storage/$1/$2;
5668bf2e
C
77 }
78
c97eea23
C
79 location / {
80 proxy_pass http://localhost:9000;
81 proxy_set_header X-Real-IP $remote_addr;
82 proxy_set_header Host $host;
83 proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
84
34b19192
C
85 # Hard limit, PeerTube does not support videos > 8GB
86 client_max_body_size 8G;
7e9334c3
C
87 proxy_connect_timeout 600;
88 proxy_send_timeout 600;
89 proxy_read_timeout 600;
e883399f 90 send_timeout 600;
c97eea23
C
91 }
92
93 # Bypass PeerTube webseed route for better performances
94 location /static/webseed {
85cd9bde
C
95 # Clients usually have 4 simultaneous webseed connections, so the real limit is 3MB/s per client
96 limit_rate 800k;
97
c97eea23
C
98 if ($request_method = 'OPTIONS') {
99 add_header 'Access-Control-Allow-Origin' '*';
100 add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS';
101 add_header 'Access-Control-Allow-Headers' 'Range,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
102 add_header 'Access-Control-Max-Age' 1728000;
103 add_header 'Content-Type' 'text/plain charset=UTF-8';
104 add_header 'Content-Length' 0;
105 return 204;
106 }
107
108 if ($request_method = 'GET') {
109 add_header 'Access-Control-Allow-Origin' '*';
110 add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS';
111 add_header 'Access-Control-Allow-Headers' 'Range,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
5668bf2e
C
112
113 # Don't spam access log file with byte range requests
114 access_log off;
c97eea23
C
115 }
116
59c48d49 117 alias /var/www/peertube/storage/videos;
c97eea23
C
118 }
119
120 # Websocket tracker
121 location /tracker/socket {
122 # Peers send a message to the tracker every 15 minutes
123 # Don't close the websocket before this time
124 proxy_read_timeout 1200s;
125 proxy_set_header Upgrade $http_upgrade;
126 proxy_set_header Connection "upgrade";
127 proxy_http_version 1.1;
128 proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
129 proxy_set_header Host $host;
130 proxy_pass http://localhost:9000;
131 }
132}