问题
In django, which web server used to host website by default? i.e. if we host django powered website locally, at that time which web server is running in django?
回答1:
Django uses their own web server, which is not supposed to be used in a production setting.
DO NOT USE THIS SERVER IN A PRODUCTION SETTING. It has not gone through security audits or performance tests. (And that’s how it’s gonna stay. We’re in the business of making Web frameworks, not Web servers, so improving this server to be able to handle a production environment is outside the scope of Django.)
source: https://docs.djangoproject.com/en/dev/ref/django-admin/#runserver
来源:https://stackoverflow.com/questions/52594538/by-default-which-web-server-comes-in-django