Video for the tutorial: https://mattsegal.dev/simple-django-d...
Next we want to tweak how Gunicorn runs a little bit. In particular, we want to set the number of "workers". The Gunicorn process runs as a sort of "master", which then co-ordinates a bunch of child "worker" processes. The Gunicorn docs suggest using 2-4 workers per CPU core (we have 1 on our DigitalOcean VM), but the default is 1.