I installed supervisor
and gunicorn
in my virtual environment (venv
).
I am using this tutorial: https://realpython.com/blog/python/kickstarting-flask-on-ubuntu-setup-and-deployment/
I'm confused as to where I should be creating the config
file for supervisor
as the default etc/supervisor
won't apply to me.
The supervisorctl
file is in the directory:
/home/giri/venv/py2.7/lib/python2.7/site-packages/supervisor
I noticed this line in the supervisorctl
file:
Options:
-c/--configuration -- configuration file path (default /etc/supervisord.conf)
Do I need to manually set this flag each time I run the supervisorctl
script or is there another way?
Thanks
As found in the docs (http://supervisord.org/configuration.html):
So put the
supervisor.conf
in your current working directory and you're fine.