2018-08-22 20:27:15 +00:00
|
|
|
#!/sbin/openrc-run
|
|
|
|
|
|
|
|
# Requires OpenRC >= 0.35
|
2019-02-10 19:25:34 +00:00
|
|
|
directory=/opt/pleroma
|
2018-08-22 20:27:15 +00: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 08:18:11 +00:00
|
|
|
retry="SIGTERM/30/SIGKILL/5"
|
2018-08-22 20:27:15 +00:00
|
|
|
|
|
|
|
pidfile="/var/run/pleroma.pid"
|
|
|
|
|
|
|
|
depend() {
|
|
|
|
need nginx postgresql
|
2019-02-10 19:25:34 +00:00
|
|
|
}
|