Don't listen Erlang Port Mapper Daemon (4369/tcp) on 0.0.0.0
[akkoma] / installation / akkoma.supervisord
1 ; Assumes akkoma is installed in /home/akkoma/akkoma and running as the akkoma user
2 ; Also assumes mix is in /usr/bin, this might differ on BSDs or niche Linux distros
3 ; Logs into /home/akkoma/logs
4 [program:akkoma]
5 command=/usr/bin/mix phx.server
6 directory=/home/akkoma/akkoma
7 autostart=true
8 autorestart=true
9 user=akkoma
10 environment =
11 MIX_ENV=prod,
12 HOME=/home/akkoma,
13 USER=akkoma,
14 PATH="/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/home/akkoma/bin:%(ENV_PATH)s",
15 PWD=/home/akkoma/akkoma,
16 ERL_EPMD_ADDRESS=127.0.0.1
17 stdout_logfile=/home/akkoma/logs/stdout.log
18 stdout_logfile_maxbytes=50MB
19 stdout_logfile_backups=10
20 stderr_logfile=/home/akkoma/logs/stderr.log
21 stderr_logfile_maxbytes=50MB
22 stderr_logfile_backups=10