You’ve built your Django web app and are working on deploying it. You’ve been running your app locally with python manage.py runserver. That’s a fine command, built for development convenience, but it’s not meant to be used as part of a production setup. The docs are very adamant about this: DO NOT USE THIS SERVER IN A PRODUCTION SETTING. It has not gone through security audits or performance tests. So the server started with runserver is not guaranteed to be performant (it’s very s...