pleroma/installation/init.d/pleroma

22 lines
371 B
Plaintext
Raw Normal View History

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