You can gracefully reload by sending HUP signal to gunicorn:
$ kill -HUP masterpid
To increase the worker count by one:
$ kill -TTIN $masterpid
To decrease the worker count by one:
$ kill -TTOUT $masterpid