This page (revision-3) was last changed on 23-Feb-2009 23:03 by JensKapitza 

This page was created on 10-Dec-2008 10:32 by JensKapitza

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
3 23-Feb-2009 23:03 474 bytes JensKapitza to previous TODO write tomcat howto
2 11-Dec-2008 18:04 465 bytes Peter Hormanns to previous | to last Tag vergeben
1 10-Dec-2008 10:32 447 bytes JensKapitza to last Apache2Module cgi für ruby, python, perl und shell

Page References

Incoming links Outgoing links
Apache2Module...nobody

Version management

Difference between version and

== mod_cgi ==

Nach einer normalen Installation von Apache2 und ruby, python und perl
kann man das CGI Modul einfach konfigurieren.

Ziel ist es alle Dateien mit der Endung rb (ruby), pl (perl), py (python) und sh (shell) als Ausgabescript zu nutzen. Folgende Konfiguration genügt.

{{{
<IfModule mod_cgi.c>
AddHandler cgi-script .cgi .py .rb .pl .sh
<Files ~ "\.(rb|py|pl|sh|php)$">
  Options +ExecCGI
</Files>
</IfModule>
}}}

[{Tag Apache}]