Bhuvan Gandhi
Bhuvan Gandhi

Reputation: 177

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?

Upvotes: 8

Views: 6238

Answers (1)

S. Van den Wyngaert
S. Van den Wyngaert

Reputation: 691

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

Upvotes: 8

Related Questions