]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - support/doc/production.md
Add ability for plugins to specify scale filter
[github/Chocobozzz/PeerTube.git] / support / doc / production.md
index 41aae6b554c123c5f3d9ffd5714c74ad774a7ed3..43f8eb8a5cc3385194fefd3f03d6fe504794fdab 100644 (file)
@@ -39,6 +39,12 @@ Create the production database and a peertube user inside PostgreSQL:
 
 ```
 $ sudo -u postgres createuser -P peertube
+```
+
+Here you should enter a password for PostgreSQL `peertube` user, that should be copied in `production.yaml` file.
+Don't just hit enter else it will be empty.
+
+```
 $ sudo -u postgres createdb -O peertube -E UTF8 -T template0 peertube_prod
 ```
 
@@ -66,7 +72,7 @@ Download the latest version of the Peertube client, unzip it and remove the zip
 ```
 $ cd /var/www/peertube/versions
 $ sudo -u peertube wget -q "https://github.com/Chocobozzz/PeerTube/releases/download/${VERSION}/peertube-${VERSION}.zip"
-$ sudo -u peertube unzip peertube-${VERSION}.zip && sudo -u peertube rm peertube-${VERSION}.zip
+$ sudo -u peertube unzip -q peertube-${VERSION}.zip && sudo -u peertube rm peertube-${VERSION}.zip
 ```
 
 Install Peertube:
@@ -162,8 +168,6 @@ $ sudo pkg install dehydrated
 
 ### TCP/IP Tuning
 
-A lot of your instance's raw performance is dependent on a properly tuned machine and more specifically, reverse-proxy. We provide support for Nginx and spent a lot of time putting sane defaults in it, but we strongly advise you to follow up with instructions in https://github.com/denji/nginx-tuning as needed.
-
 **On Linux**
 
 ```