]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - support/doc/production.md
Try to improve documentations/readme
[github/Chocobozzz/PeerTube.git] / support / doc / production.md
CommitLineData
63bfad7e
C
1# Production guide
2
3## Installation
4
5### Dependencies
6
7Follow the steps of the [dependencies guide](dependencies.md).
8
9### PeerTube user
10
11Create a `peertube` user with `/home/peertube` home:
12
13```bash
14sudo useradd -m -d /home/peertube -s /bin/bash -p peertube peertube
15sudo passwd peertube
16```
17
18### Database
19
20Create production database and peertube user:
21
22```bash
23sudo -u postgres createuser -P peertube
24sudo -u postgres createdb -O peertube peertube_prod
25```
26
27### Sources
28
29Clone, install node dependencies and build application:
30
31```bash
32$ cd /home/peertube
33$ sudo -u peertube git clone -b master https://github.com/Chocobozzz/PeerTube
34$ cd PeerTube
35$ sudo -u peertube yarn install --pure-lockfile
36$ sudo -u peertube npm run build
37```
38
39### PeerTube configuration
40
41Copy example configuration:
42
43```bash
44$ sudo -u peertube cp config/production.yaml.example config/production.yaml
45```
46
47Then edit the `config/production.yaml` file according to your webserver
48configuration. Keys set in this file will override those of
49`config/default.yml`.
50
51### Webserver
52
53Copy the nginx configuration template:
54
55```bash
56$ sudo cp /home/peertube/PeerTube/support/nginx/peertube-https /etc/nginx/sites-available/peertube
57```
58
59Then modify the webserver configuration file. Please pay attention to the `alias` key of `/static/webseed` location.
60It should correspond to the path of your videos directory (set in the configuration file as `storage->videos` key).
61
62```bash
63$ sudo vim /etc/nginx/sites-available/peertube
64```
65
66If you want to set https with Let's Encrypt please follow the steps of [this guide](https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-16-04).
67
68An example of the nginx configuration could be:
69
70```
71server {
72 listen 80;
73 listen [::]:80;
74 server_name peertube.example.com;
75
76 access_log /var/log/nginx/peertube.example.com.access.log;
77 error_log /var/log/nginx/peertube.example.com.error.log;
78
79 rewrite ^ https://$server_name$request_uri? permanent;
80}
81
82server {
83 listen 443 ssl http2;
84 listen [::]:443 ssl http2;
85 server_name peertube.example.com;
86
87 # For example with Let's Encrypt
88 ssl_certificate /etc/letsencrypt/live/peertube.example.com/fullchain.pem;
89 ssl_certificate_key /etc/letsencrypt/live/peertube.example.com/privkey.pem;
90 ssl_trusted_certificate /etc/letsencrypt/live/peertube.example.com/chain.pem;
91
92 access_log /var/log/nginx/peertube.example.com.access.log;
93 error_log /var/log/nginx/peertube.example.com.error.log;
94
95 location ^~ '/.well-known/acme-challenge' {
96 default_type "text/plain";
97 root /var/www/certbot;
98 }
99
100 location / {
101 proxy_pass http://localhost:9000;
102 proxy_set_header X-Real-IP $remote_addr;
103 proxy_set_header Host $host;
104 proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
105
106 # For the video upload
107 client_max_body_size 8G;
108 proxy_connect_timeout 600;
109 proxy_send_timeout 600;
110 proxy_read_timeout 600;
111 send_timeout 600;
112 }
113
114 # Bypass PeerTube webseed route for better performances
115 location /static/webseed {
116 if ($request_method = 'OPTIONS') {
117 add_header 'Access-Control-Allow-Origin' '*';
118 add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS';
119 add_header 'Access-Control-Allow-Headers' 'Range,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
120 add_header 'Access-Control-Max-Age' 1728000;
121 add_header 'Content-Type' 'text/plain charset=UTF-8';
122 add_header 'Content-Length' 0;
123 return 204;
124 }
125
126 if ($request_method = 'GET') {
127 add_header 'Access-Control-Allow-Origin' '*';
128 add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS';
129 add_header 'Access-Control-Allow-Headers' 'Range,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
130 }
131
132 alias /var/www/PeerTube/videos;
133 }
134
135 # Websocket tracker
136 location /tracker/socket {
137 # Peers send a message to the tracker every 15 minutes
138 # Don't close the websocket before this time
139 proxy_read_timeout 1200s;
140 proxy_set_header Upgrade $http_upgrade;
141 proxy_set_header Connection "upgrade";
142 proxy_http_version 1.1;
143 proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
144 proxy_set_header Host $host;
145 proxy_pass http://localhost:9000;
146 }
147}
148```
149
150
151Activate the configuration file:
152
153```bash
154$ sudo ln -s /etc/nginx/sites-available/peertube /etc/nginx/sites-enabled/peertube
155$ sudo systemctl reload nginx
156```
157
158### Systemd
159
160Copy the nginx configuration template:
161
162```bash
163sudo cp /home/peertube/PeerTube/support/systemd/peertube.service /etc/systemd/system/
164```
165
166Update the service file:
167
168```bash
169sudo vim /etc/systemd/system/peertube.service
170```
171
172It should look like this:
173
174```
175[Unit]
176Description=PeerTube daemon
177After=network.target
178
179[Service]
180Type=simple
181Environment=NODE_ENV=production
182User=peertube
183Group=peertube
184ExecStart=/usr/bin/npm start
185WorkingDirectory=/home/peertube/PeerTube
186StandardOutput=syslog
187StandardError=syslog
188SyslogIdentifier=peertube
189Restart=always
190
191[Install]
192WantedBy=multi-user.target
193```
194
195
196Tell systemd to reload its config:
197
198```bash
199sudo systemctl daemon-reload
200```
201
202### Run
203
204```bash
205sudo systemctl start peertube
206sudo journalctl -feu peertube
207```
208
209### Administrator
210
211The administrator password is automatically generated and can be found in the
212logs. You can set another password with:
213
214```bash
215$ NODE_ENV=production npm run reset-password -- -u root
216```
217
218## Upgrade
219
220The following commands will upgrade the source (according to your current
221branch), upgrade node modules and rebuild client application:
222
223```bash
224# systemctl stop peertube
225$ npm run upgrade-peertube
226# systemctl start peertube
227```