zola-app/supervisord.conf

31 lines
669 B
Plaintext

[program:nginx]
directory=/app/data
command=/usr/sbin/nginx -c /app/data/nginx.conf -g 'daemon off;'
autostart=true
autorestart=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
[program:fpm]
directory=/app/data
command=/usr/sbin/php-fpm7.2 -F
autostart=true
autorestart=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
[program:rebuild]
directory=/app/data
command=/app/code/rebuild-loop.sh
user=cloudron
autostart=true
autorestart=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0