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