How do you set up Python scripts to work in Apache 2.0? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T21:12:13Zhttp://stackoverflow.com/feeds/question/5102http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/5102/how-do-you-set-up-python-scripts-to-work-in-apache-2-03How do you set up Python scripts to work in Apache 2.0?deadprogrammer2008-08-07T18:24:12Z2008-08-07T21:19:14Z
<p>I tried to follow a couple of googled up tutorials on setting up mod_python, but failed every time. Do you have a good, step-by step, rock-solid howto?</p>
<p>My dev box is OS X, production - Centos.</p>
http://stackoverflow.com/questions/5102/how-do-you-set-up-python-scripts-to-work-in-apache-2-0/5129#51292Answer by Cristian for How do you set up Python scripts to work in Apache 2.0?Cristian2008-08-07T18:40:53Z2008-08-07T18:40:53Z<p>There are two main ways of running Python on Apache. The simplest would be to use CGI and write normal Python scripts while the second is using a web framework like Django or Pylons.</p>
<p>Using CGI is straightforward. Make sure your Apache config file has a cgi-bin set up. If not, follow their documentation (<a href="http://httpd.apache.org/docs/2.0/howto/cgi.html" rel="nofollow">http://httpd.apache.org/docs/2.0/howto/cgi.html</a>). At that point all you need to do is place your Python scripts in the cgi-bin directory and the standard output will become the HTTP response. Refer to Python's documentation for further info (<a href="http://www.python.org/doc/current/lib/module-cgi.html" rel="nofollow">http://www.python.org/doc/current/lib/module-cgi.html</a>).</p>
<p>If you want to use a web framework you'll need to setup mod_python or FastCGI. These steps are dependent on which framework you want to use. Django provides clear instructions on how to setup mod_python and Django with Apache (<a href="http://www.djangoproject.com/documentation/modpython/" rel="nofollow">http://www.djangoproject.com/documentation/modpython/</a>)</p>http://stackoverflow.com/questions/5102/how-do-you-set-up-python-scripts-to-work-in-apache-2-0/5165#51653Answer by Mark Harrison for How do you set up Python scripts to work in Apache 2.0?Mark Harrison2008-08-07T19:02:57Z2008-08-07T21:19:14Z<p>Yes, mod_python is pretty confusing to set up. Here's how I did it.</p>
<p>In httpd.conf:</p>
<pre><code>LoadModule python_module modules/mod_python.so<br><br><Directory "/serverbase/htdocs/myapp"><br> AddHandler mod_python .py<br> PythonHandler myapp<br> PythonDebug On<br></code></pre>
<p>and in your application directory:</p>
<pre><code>$ /serverbase/htdocs/myapp$ ls -l<br>total 16<br>-r-xr-xr-x 1 root sys 6484 May 21 15:54 myapp.py<br></code></pre>
<p>Repeat the configuration for each python program you wish to have running under mod_python.</p>http://stackoverflow.com/questions/5102/how-do-you-set-up-python-scripts-to-work-in-apache-2-0/5168#51683Answer by BrianLy for How do you set up Python scripts to work in Apache 2.0?BrianLy2008-08-07T19:05:58Z2008-08-07T19:05:58Z<p>Are you running Python on UNIX or Windows?</p>
<p>An alternative to mod_python and FastCGI is mod_wsgi. You can find out more at <a href="http://code.google.com/p/modwsgi/" rel="nofollow">http://code.google.com/p/modwsgi/</a></p>
<p>I have built and installed this on Solaris without problems. I had previously tried mod_python but ran into problems with shared libraries as part of the build. There are <a href="http://code.google.com/p/modwsgi/wiki/InstallationInstructions" rel="nofollow">good install docs</a> available.</p>