mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
32 lines
609 B
Bash
Executable File
32 lines
609 B
Bash
Executable File
case $(ulimit -u) in
|
|
|
|
# Automatic configuration for Gunicorn's Workers setting.
|
|
|
|
# Standard-1X (+Free, +Hobby) Dyno
|
|
256)
|
|
export DYNO_RAM=512
|
|
export WEB_CONCURRENCY=${WEB_CONCURRENCY:-2}
|
|
;;
|
|
|
|
# Standard-2X Dyno
|
|
512)
|
|
export DYNO_RAM=1024
|
|
export WEB_CONCURRENCY=${WEB_CONCURRENCY:-4}
|
|
;;
|
|
|
|
# Performance-M Dyno
|
|
16384)
|
|
export DYNO_RAM=2560
|
|
export WEB_CONCURRENCY=${WEB_CONCURRENCY:-8}
|
|
;;
|
|
|
|
# Performance-L Dyno
|
|
32768)
|
|
export DYNO_RAM=6656
|
|
export WEB_CONCURRENCY=${WEB_CONCURRENCY:-11}
|
|
;;
|
|
|
|
esac
|
|
|
|
# Automatic configuration for Gunicorn's ForwardedAllowIPS setting.
|
|
export FORWARDED_ALLOW_IPS='*' |