2024-05-28 15:21:18 +05:30
|
|
|
[supervisord]
|
|
|
|
|
user=root
|
|
|
|
|
nodaemon=true
|
|
|
|
|
stderr_logfile=/app/logs/error/supervisor.err.log
|
2024-06-28 13:08:13 +05:30
|
|
|
stdout_logfile=/app/logs/access/supervisor.log
|
2024-05-28 15:21:18 +05:30
|
|
|
|
|
|
|
|
[program:redis]
|
|
|
|
|
directory=/app/data/redis
|
|
|
|
|
command=redis-server
|
|
|
|
|
autostart=true
|
|
|
|
|
autorestart=true
|
|
|
|
|
stderr_logfile=/app/logs/error/redis.err.log
|
2024-06-28 13:08:13 +05:30
|
|
|
stdout_logfile=/app/logs/access/redis.log
|
2024-05-28 15:21:18 +05:30
|
|
|
|
|
|
|
|
[program:postgresql]
|
|
|
|
|
user=postgres
|
2024-06-28 13:08:13 +05:30
|
|
|
command=/usr/lib/postgresql/15/bin/postgres --config-file=/etc/postgresql/postgresql.conf
|
2024-05-28 15:21:18 +05:30
|
|
|
autostart=true
|
|
|
|
|
autorestart=true
|
|
|
|
|
stderr_logfile=/app/logs/error/postgresql.err.log
|
2024-06-28 13:08:13 +05:30
|
|
|
stdout_logfile=/app/logs/access/postgresql.log
|
2024-05-28 15:21:18 +05:30
|
|
|
|
|
|
|
|
[program:minio]
|
|
|
|
|
directory=/app/data/minio
|
|
|
|
|
command=minio server /app/data/minio
|
|
|
|
|
autostart=true
|
|
|
|
|
autorestart=true
|
|
|
|
|
stderr_logfile=/app/logs/error/minio.err.log
|
2024-06-28 13:08:13 +05:30
|
|
|
stdout_logfile=/app/logs/access/minio.log
|
2024-05-28 15:21:18 +05:30
|
|
|
|
|
|
|
|
[program:nginx]
|
|
|
|
|
directory=/app/data/nginx
|
2024-06-28 13:08:13 +05:30
|
|
|
command=/app/nginx-start.sh
|
2024-05-28 15:21:18 +05:30
|
|
|
autostart=true
|
|
|
|
|
autorestart=true
|
|
|
|
|
stderr_logfile=/app/logs/error/nginx.err.log
|
2024-06-28 13:08:13 +05:30
|
|
|
stdout_logfile=/app/logs/access/nginx.log
|
|
|
|
|
|