|
|
|
@ -7,12 +7,12 @@
|
|
|
|
|
|
|
|
|
|
**Using gunicorn:**
|
|
|
|
|
|
|
|
|
|
`gunicorn --env SCRIPT_NAME=/watermarks -w 4 -b 127.0.0.1:5000 app:app --log-level debug`
|
|
|
|
|
`gunicorn --env SCRIPT_NAME=/watermark -w 4 -b 127.0.0.1:5000 app:app --log-level debug`
|
|
|
|
|
* `-w` workers
|
|
|
|
|
* `-b` bind to address / unix socker
|
|
|
|
|
|
|
|
|
|
**And gunicorn with using unix sock:** (this how it should run in production)
|
|
|
|
|
` gunicorn --env SCRIPT_NAME=/watermarks --workers 4 --bind unix:app.sock -m 007 app:app --log-level debug
|
|
|
|
|
` gunicorn --env SCRIPT_NAME=/watermark --workers 4 --bind unix:app.sock -m 007 app:app --log-level debug
|
|
|
|
|
|
|
|
|
|
## in Production with gunicorn and unix sockets
|
|
|
|
|
Based on https://medium.com/faun/deploy-flask-app-with-nginx-using-gunicorn-7fda4f50066a
|
|
|
|
|