I've got a problem with getting python WSGI module for Apache on a Debian box up and running, or it could be just me having a hard time proving that it running.
The system is Debian 6.0.6 running python 2.6.6 and Apache 2.2.16 with the mod_python and mod_wsgi enabled; all is a default install without any crazy configurations that I'm aware of as of yet.
What I'm trying to do is have a directory in /var/www/pythontest were a few developers can drop some simple python code and have it executed and display the results in a browser. (specific reason for this and not just starting with installing Django is that the boss demands it be done this way first, and then I can install Django. go fig.)
I've been trying to follow the Configuration Guide at http://code.google.com/p/modwsgi/wiki/QuickConfigurationGuide to confirm that everything is working.
The VirtualHost that is setup is
> < VirtualHost ###.##.###.##:80> <br>
> ServerName test.yyy.com <br>
>
> LogLevel info <br>
> ErrorLog /var/log/apache2/error.test.log <br>
> CustomLog /var/log/apache2/access.test.log combined <br>
>
> DocumentRoot /var/www <br>
>
> WSGIDaemonProcess yyy.com processes=2 threads=15 display-name=%{GROUP} <br>
> WSGIProcessGroup yyy.com <br>
> WSGIScriptAlias /pythontest /var/www/pythontest/test1.wsgi <br>
>
> < Directory /var/www/pythontest > <br>
> Order allow,deny <br>
> Allow from all <br>
> < /Directory> <br>
> < /VirtualHost>
and within the pythontest directory is a test1 script from the above listed Configuration Guide.
At this time everything looked to have installed ok without any errors being spat out. I've been able to read any file/script that I put in the directory, all with 755 permissions. But NONE have executed and displayed the results in the browser.
The error log only contained for the above configuration [Fri Dec 28 10:46:21 2012] [info] mod_wsgi (pid=6554): Attach interpreter ''.
At this time all I'm trying to do is get one python wsgi application to run successfully to prove everything is working before making any changes and letting the programmers loose.
I may just be tired and missing the obvious, but any suggestions on what could be the problem and going about proving and resolving it?
Thank you,
Timothy.