X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=support%2Fdoc%2Fproduction.md;h=8f3a17f124f8175d27dd7c33d7296a7b1d39e706;hb=fd5586b33748ecdef1d46af2a7d540ba8c8e55df;hp=ec1027ea9bd28fdbb4d64d11985256d6a6c0d261;hpb=8281cf00c0f31a45f6c66f6b6b31224696e130ab;p=github%2FChocobozzz%2FPeerTube.git diff --git a/support/doc/production.md b/support/doc/production.md index ec1027ea9..8f3a17f12 100644 --- a/support/doc/production.md +++ b/support/doc/production.md @@ -6,7 +6,7 @@ ## Installation Please don't install PeerTube for production on a device behind a low bandwidth connection (example: your ADSL link). -If you want information about the appropriate hardware to run PeerTube, please see the [FAQ](https://github.com/Chocobozzz/PeerTube/blob/develop/FAQ.md#should-i-have-a-big-server-to-run-peertube). +If you want information about the appropriate hardware to run PeerTube, please see the [FAQ](https://joinpeertube.org/en_US/faq#should-i-have-a-big-server-to-run-peertube). ### Dependencies @@ -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 ``` @@ -60,13 +66,14 @@ Open the peertube directory, create a few required directories ``` $ cd /var/www/peertube $ sudo -u peertube mkdir config storage versions +$ sudo -u peertube chmod 750 config/ ``` 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: