alpine-gitea/config/supervisord.conf

18 lines
282 B
Plaintext
Raw Normal View History

2016-03-17 18:11:40 +00:00
[supervisord]
nodaemon=true
[program:sshd]
command=/usr/sbin/sshd -D
autorestart=true
priority=1
[program:redis]
command=sudo -u redis redis-server /etc/redis.conf
autorestart=true
priority=2
2018-06-06 15:01:22 +00:00
[program:gitea]
2018-06-06 17:47:29 +00:00
command=su-exec git /app/gitea/gitea web
2016-03-17 18:11:40 +00:00
autorestart=true
priority=999