aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--support/doc/production.md21
-rw-r--r--support/init.d/peertube4
2 files changed, 23 insertions, 2 deletions
diff --git a/support/doc/production.md b/support/doc/production.md
index 4f20cf140..f770b58f6 100644
--- a/support/doc/production.md
+++ b/support/doc/production.md
@@ -195,6 +195,27 @@ Run:
195$ sudo service peertube start 195$ sudo service peertube start
196``` 196```
197 197
198### OpenRC
199
200If your OS uses OpenRC, copy the service script:
201
202```
203$ sudo cp /var/www/peertube/peertube-latest/support/init.d/peertube /etc/init.d/
204```
205
206If you want to start PeerTube on boot:
207
208```
209$ sudo rc-update add peertube default
210```
211
212Run and print last logs:
213
214```
215$ sudo /etc/init.d/peertube start
216$ tail -f /var/log/peertube/peertube.log
217```
218
198### Administrator 219### Administrator
199 220
200The administrator password is automatically generated and can be found in the 221The administrator password is automatically generated and can be found in the
diff --git a/support/init.d/peertube b/support/init.d/peertube
index 4473fc0ea..bb51b2e99 100644
--- a/support/init.d/peertube
+++ b/support/init.d/peertube
@@ -4,10 +4,10 @@ APP_NAME="peertube"
4USER="peertube" 4USER="peertube"
5GROUP="peertube" 5GROUP="peertube"
6NODE_ENV="production" 6NODE_ENV="production"
7APP_DIR="/var/www/peertube" 7APP_DIR="/var/www/peertube/peertube-latest"
8NODE_APP="dist/server" 8NODE_APP="dist/server"
9KWARGS="" 9KWARGS=""
10CONFIG_DIR="/etc/peertube" 10CONFIG_DIR="/var/www/peertube/config"
11PID_DIR="$APP_DIR/pid" 11PID_DIR="$APP_DIR/pid"
12PID_FILE="$PID_DIR/$APP_NAME.pid" 12PID_FILE="$PID_DIR/$APP_NAME.pid"
13LOG_DIR="/var/log/peertube" 13LOG_DIR="/var/log/peertube"