Hacker News new | ask | show | jobs
by fleetfox 1072 days ago
Django is WSGI/ASGI framework not a webserver. What do they actually use to terminate HTTP?
2 comments

Not sure about what Meta is using for Threads, but gunicorn and nginx are a common set up for Django in production.

Some will use `python manage.py runserver` in production, and they are using the defacto wrong set up. Don't ever do that.

Most likely a reverse proxy of some sort.