Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

By default, which web server comes in django?

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?

like image 418
Bhuvan Gandhi Avatar asked Oct 01 '18 15:10

Bhuvan Gandhi


1 Answers

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

like image 50
S. Van den Wyngaert Avatar answered Oct 13 '22 20:10

S. Van den Wyngaert