if I run command (to start the app) via supervisor:
sudo supervisorctl start myapp
it is throwing the error of:
myapp: ERROR (no such process)
I created a file called myappsettings.conf:
[program:myapp]
command = /usr/local/bin/gunicorn -c /home/ubuntu/virtualenv/gunicorn_config.py myapp.wsgi
user = ubuntu
stdout_logfile = /home/ubuntu/virtualenv/myapp/error/gunicorn_supervisor.log
redirect_stderr = true
What is the issue here?
Thank you.