Hi there!
I'm hoping some of you can help me with what seems to be me not understanding supervisor
well enough. 🙂
Following some of the tutorials here, I rely on supervisor
to run an instance of GoToSocial with Opalstack. It has worked really well up until recently. However, the service will now stop every other day, and I cannot seem to figure out why; I do not see anything suspicious in the logs, and do not understand why the service won't restart on its own.
Here is my supervisor.conf
file:
[unix_http_server]
file=/home/my_user/logs/apps/my_app/supervisor.sock
[supervisord]
logfile=/home/my_user/logs/apps/my_app/supervisord.log
logfile_maxbytes=50MB
logfile_backups=10
loglevel=info
pidfile=/home/my_user/logs/apps/my_app/supervisord.pid
[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
[supervisorctl]
serverurl=unix:///home/my_user/logs/apps/my_app/supervisor.sock
[program:gotosocial]
directory=/home/my_user/apps/my_app
command=/home/my_user/apps/my_app/gotosocial --config-path config.yaml server start
stdout_logfile=/home/my_user/logs/apps/my_app/my_app_gotosocial.log
stderr_logfile=/home/my_user/logs/apps/my_app/my_app_gotosocial.log
autorestart=true
Am I missing something obvious with my configuration, or is there some place other than /home/my_user/logs/apps/my_app/my_app_gotosocial.log
where I could look for information?
Thank you!