2018-08-22 22:27:15 +02:00
|
|
|
#!/sbin/openrc-run
|
|
|
|
|
|
|
|
# Requires OpenRC >= 0.35
|
2019-02-10 20:25:34 +01:00
|
|
|
directory=/opt/pleroma
|
2018-08-22 22:27:15 +02:00
|
|
|
|
|
|
|
command=/usr/bin/mix
|
|
|
|
command_args="phx.server"
|
|
|
|
command_user=pleroma:pleroma
|
|
|
|
command_background=1
|
|
|
|
|
|
|
|
export PORT=4000
|
|
|
|
export MIX_ENV=prod
|
|
|
|
|
|
|
|
# Ask process to terminate within 30 seconds, otherwise kill it
|
2019-01-28 09:18:11 +01:00
|
|
|
retry="SIGTERM/30/SIGKILL/5"
|
2018-08-22 22:27:15 +02:00
|
|
|
|
|
|
|
pidfile="/var/run/pleroma.pid"
|
|
|
|
|
|
|
|
depend() {
|
|
|
|
need nginx postgresql
|
2019-02-10 20:25:34 +01:00
|
|
|
}
|