I want to make a Flask+Nginx+Gunicorn deployment. I have Nginx setup and running and I run gunicorn as described in the docs:
gunicorn app:app
use --daemon to the binding command of gunicorn. ex:
gunicorn --bind 0.0.0.0:8001 your_project.wsgi --daemon