Files
2026-09-17 04:11:07 +00:00

46 lines
812 B
Plaintext
Executable File

[supervisord]
nodaemon=true
user=root
logfile=/var/log/supervisor/supervisord.log
pidfile=/var/run/supervisord.pid
; ==========================================
; Spring Boot
; ==========================================
[program:springboot]
command=java -jar /opt/backend/app.jar
directory=/opt/backend
autostart=true
autorestart=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
priority=20
; ==========================================
; Nginx (serves APK download + proxies backend)
; ==========================================
[program:nginx]
command=/usr/sbin/nginx -g "daemon off;"
autostart=true
autorestart=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
priority=30