By default, which web server comes in django?

谁说我不能喝 提交于 2020-04-10 03:53:09

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!