[Answered ]-Mod_wsgi application entry point? What and Where is it?

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

Leave a comment