Gunicorn example conf

Linux -- Posted on Dec. 12, 2019

gunicorn example conf

              
                [program:project]
command=/path/to/env/bin/gunicorn  --workers 3 --bind unix:/path/to/project.sock project.wsgi
directory=/path/to/project/project
autostart=true
autorestart=true
stderr_logfile=/var/log/project.err.log
stdout_logfile=/var/log/project.out.log
                  
   
            

Related Posts