FastApi-Microservices / supervisor.conf
anyonehomep1mane
Initial Changes
472efd1
raw
history blame contribute delete
439 Bytes
[supervisord]
nodaemon=true
user=root
logfile=/dev/null
logfile_maxbytes=0
[program:auth_service]
command=uvicorn auth_service.app.main:app --host 0.0.0.0 --port 8001
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
redirect_stderr=true
autorestart=true
[program:task_service]
command=uvicorn task_service.app.main:app --host 0.0.0.0 --port 8002
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
redirect_stderr=true
autorestart=true