aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/doc/production.md
diff options
context:
space:
mode:
Diffstat (limited to 'support/doc/production.md')
-rw-r--r--support/doc/production.md9
1 files changed, 8 insertions, 1 deletions
diff --git a/support/doc/production.md b/support/doc/production.md
index 8310e7fda..8d2a4da11 100644
--- a/support/doc/production.md
+++ b/support/doc/production.md
@@ -41,6 +41,13 @@ $ sudo -u postgres createuser -P peertube
41$ sudo -u postgres createdb -O peertube peertube_prod 41$ sudo -u postgres createdb -O peertube peertube_prod
42``` 42```
43 43
44Then enable extensions PeerTube needs:
45
46```
47$ sudo -u postgres psql -c "CREATE EXTENSION pg_trgm;" peertube_prod
48$ sudo -u postgres psql -c "CREATE EXTENSION unaccent;" peertube_prod
49```
50
44### Prepare PeerTube directory 51### Prepare PeerTube directory
45 52
46Fetch the latest tagged version of Peertube 53Fetch the latest tagged version of Peertube
@@ -194,7 +201,7 @@ Now your instance is up you can:
194 201
195## Upgrade 202## Upgrade
196 203
197### PeerTube code 204### PeerTube instance
198 205
199**Check the changelog (in particular BREAKING CHANGES!):** https://github.com/Chocobozzz/PeerTube/blob/develop/CHANGELOG.md 206**Check the changelog (in particular BREAKING CHANGES!):** https://github.com/Chocobozzz/PeerTube/blob/develop/CHANGELOG.md
200 207