1๐
โ
i would say WSGI application entry point
is the wsgi.py script which is the Gate (stands also for Gateway) from apache into django app and vise versa
it is like
browser < - > server < - > wsgi < - > django
without wsgi the server can serve (render) normal html files but not django app. for this, you need wsgi (Web Server Gateway interface) which is a Gate between django and server
hope this helps
๐คdoniyor
1๐
It means wherever the WSGIServerAlias is pointing to, so for Django the wsgi.py file.
๐คDaniel Roseman
- [Answered ]-Django view variable not presenting any data in html
- [Answered ]-Django-allauth Facebook error
- [Answered ]-Django unicode issue with datetime in Jython with SQLite JDBC
Source:stackexchange.com