mirror of
https://github.com/caronc/apprise-api.git
synced 2024-12-13 18:31:20 +01:00
24 lines
613 B
Plaintext
24 lines
613 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
pidfile=/run/apprise/supervisord.pid
|
|
logfile=/dev/null
|
|
logfile_maxbytes=0
|
|
user=www-data
|
|
group=www-data
|
|
|
|
[program:nginx]
|
|
command=/usr/sbin/nginx -c /opt/apprise/webapp/etc/nginx.conf -p /opt/apprise
|
|
directory=/opt/apprise
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[program:gunicorn]
|
|
command=gunicorn -c /opt/apprise/webapp/gunicorn.conf.py -b :8080 --worker-tmp-dir /dev/shm core.wsgi
|
|
directory=/opt/apprise/webapp
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|