Where can I get mod_wsgi.so
for windows 7 64 bit?
I have researched around and all point me to http://www.lfd.uci.edu/~gohlke/pythonlibs/#mod_wsgi
B
If you had read the Google Code page and followed the link you would have found this, which includes multiple versions including a 64-bit version built with VC10 for httpd 2.4.
I have recently did this set up.. And believe me it was really difficult specially on windows machine...These two reference link helped me to achieve that..
In short:
Once you run this command it will give you some output. In my case it was:
LoadFile "f:/anaconda_3_32_bit/python37.dll"
LoadModule wsgi_module "f:/anaconda_3_32_bit/lib/sitepackages/mod_wsgi/server/mod_wsgi.cp37-win32.pyd"
WSGIPythonHome "f:/anaconda_3_32_bit"
Paste this configuration as it is in httpd.conf file, for apache web server.. Do not change anything at all
And you are done !! Hope it'll help someone :)