]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
postgres creatuser password comment
authorphilippe lhardy <pl@artisanlogiciel.net>
Mon, 1 Mar 2021 08:18:08 +0000 (09:18 +0100)
committerChocobozzz <chocobozzz@cpy.re>
Thu, 4 Mar 2021 11:22:29 +0000 (12:22 +0100)
user experience, usualy way is to hit enter whern no indication is given, so make it explicit.

support/doc/production.md

index fcb379a8a24b607c03f23e74c230f37141460e5d..4eb3111f034194ae88879bd10ca17c5674201e9e 100644 (file)
@@ -39,9 +39,16 @@ Create the production database and a peertube user inside PostgreSQL:
 
 ```
 $ sudo -u postgres createuser -P peertube
+```
+
+Here you should enter a password for postgresql user peertube, it should be copied in production.yaml file.
+Don’t just hit enter else it will be empty, default production yaml uses peertube here, but it is better you pick a stronger one.
+
+```
 $ sudo -u postgres createdb -O peertube -E UTF8 -T template0 peertube_prod
 ```
 
+
 Then enable extensions PeerTube needs:
 
 ```