All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 41s
- Webhooks now return 200 OK even on errors (to prevent retries) - Improved error handling with proper JSON responses - Enhanced logging for webhook debugging - Supervisor logs now visible in docker logs (stdout/stderr) - Fixed TodoistIntegration error display in UI
30 lines
802 B
Plaintext
30 lines
802 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
logfile=/dev/stdout
|
|
logfile_maxbytes=0
|
|
pidfile=/var/run/supervisord.pid
|
|
user=root
|
|
|
|
[program:nginx]
|
|
command=/usr/sbin/nginx -g "daemon off;"
|
|
autostart=true
|
|
autorestart=true
|
|
stderr_logfile=/var/log/supervisor/nginx.err.log
|
|
stdout_logfile=/var/log/supervisor/nginx.out.log
|
|
priority=10
|
|
|
|
[program:backend]
|
|
command=/app/backend/main
|
|
directory=/app/backend
|
|
autostart=true
|
|
autorestart=true
|
|
# Логи идут в stdout/stderr контейнера для docker logs
|
|
stderr_logfile=/dev/stderr
|
|
stdout_logfile=/dev/stdout
|
|
stderr_logfile_maxbytes=0
|
|
stdout_logfile_maxbytes=0
|
|
priority=20
|
|
# Переменные окружения будут переданы из docker run --env-file
|
|
# PORT по умолчанию 8080 внутри контейнера
|
|
|