diff options
author | Chocobozzz <me@florianbigard.com> | 2020-01-29 11:48:19 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-01-29 11:48:19 +0100 |
commit | 0539dba824bc3b964faaba358d8e7836e006b899 (patch) | |
tree | 661f51ffc0169ec69a39adbb060b3b6af5fd4e77 | |
parent | f5fcd9f72514d6c4044a9c904d0ce610033bcba5 (diff) | |
download | PeerTube-0539dba824bc3b964faaba358d8e7836e006b899.tar.gz PeerTube-0539dba824bc3b964faaba358d8e7836e006b899.tar.zst PeerTube-0539dba824bc3b964faaba358d8e7836e006b899.zip |
Force utf8 when creating the database
-rw-r--r-- | support/doc/production.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/doc/production.md b/support/doc/production.md index 8f061f868..6febaba5d 100644 --- a/support/doc/production.md +++ b/support/doc/production.md | |||
@@ -39,7 +39,7 @@ Create the production database and a peertube user inside PostgreSQL: | |||
39 | 39 | ||
40 | ``` | 40 | ``` |
41 | $ sudo -u postgres createuser -P peertube | 41 | $ sudo -u postgres createuser -P peertube |
42 | $ sudo -u postgres createdb -O peertube peertube_prod | 42 | $ sudo -u postgres createdb -O peertube -E UTF8 -T template0 peertube_prod |
43 | ``` | 43 | ``` |
44 | 44 | ||
45 | Then enable extensions PeerTube needs: | 45 | Then enable extensions PeerTube needs: |