gunicorn: use more aggressive multi-threading settings
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
765e0ba728
commit
deffeebd85
|
@ -121,7 +121,7 @@ write_files:
|
||||||
runcmd:
|
runcmd:
|
||||||
- update-ca-certificates
|
- update-ca-certificates
|
||||||
- pip install git+https://git.pictuga.com/pictuga/morss.git#[full] gunicorn
|
- pip install git+https://git.pictuga.com/pictuga/morss.git#[full] gunicorn
|
||||||
- gunicorn --bind 0.0.0.0:${PORT:-8000} -w 4 --preload --access-logfile - morss
|
- gunicorn --bind 0.0.0.0:${PORT:-8000} --workers 4 --worker-class=gevent --preload --access-logfile - morss
|
||||||
```
|
```
|
||||||
|
|
||||||
## Run
|
## Run
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
|
|
||||||
if [ -z "$1" ] || [ "$@" = "run" ]; then
|
if [ -z "$1" ] || [ "$@" = "run" ]; then
|
||||||
gunicorn --bind 0.0.0.0:${PORT:-8000} -w 4 --preload --access-logfile - morss
|
gunicorn --bind 0.0.0.0:${PORT:-8000} --workers 4 --worker-class=gevent --preload --access-logfile - morss
|
||||||
else
|
else
|
||||||
morss $@
|
morss $@
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue