I've just upgraded to Mountain Lion and now I'm unable to get django working with the oracle libraries via mod_wsgi. Using VERSIONER_PYTHON_PREFER_32_BIT I can use the django shell with no problem, but as soon as I try to load a page via apache it breaks with Mach-O arch errors.
The problem seems to be that httpd is running in 64 bit mode. There are two suggestions for making apache run in 32-bit mode; lipo or modifying the plist.
Unfortunately, it seems that Mountain Lion no longer supports 32-bit httpd:
~ $ file /usr/sbin/httpd
/usr/sbin/httpd: Mach-O 64-bit executable x86_64
Knowing this, is there any other reasonable way of making this work? Or am I better off biting the bullet and using nginx and either uwsgi/gunicorn?