Is there a way I can create a bundle using Pyinstaller of a Django application served by mod_wsgi and Apache? Basically freeze my python source before sending installers to users.
My application has to work on both Linux and Windows. I have so far been using fastcgi and flup. But Just dropped support for fastcgi, and recommends using mod_wsgi with Apache.
The problem I am facing right now is that the apache configuration is expecting a name of a Python file `wsgi.py` for both `WSGIScriptAlias` and in `<Files\>` under `<Directory\>. However,
after running Pyinstaller on my project, I don't have any python file.
Is there a way around this?
I greatly appreciate your help.
Thanks!