summaryrefslogtreecommitdiff
path: root/data/lighttpd/lighttpd-1.4.53/doc/outdated/cgi.txt
diff options
context:
space:
mode:
Diffstat (limited to 'data/lighttpd/lighttpd-1.4.53/doc/outdated/cgi.txt')
-rw-r--r--data/lighttpd/lighttpd-1.4.53/doc/outdated/cgi.txt50
1 files changed, 50 insertions, 0 deletions
diff --git a/data/lighttpd/lighttpd-1.4.53/doc/outdated/cgi.txt b/data/lighttpd/lighttpd-1.4.53/doc/outdated/cgi.txt
new file mode 100644
index 000000000..95d187cb4
--- /dev/null
+++ b/data/lighttpd/lighttpd-1.4.53/doc/outdated/cgi.txt
@@ -0,0 +1,50 @@
+===
+CGI
+===
+
+---------------
+Module: mod_cgi
+---------------
+
+:Author: Jan Kneschke
+:Date: $Date: 2004/11/03 22:26:05 $
+:Revision: $Revision: 1.2 $
+
+:abstract:
+ The cgi module provides a CGI-conforming interface.
+
+.. meta::
+ :keywords: lighttpd, cgi
+
+.. contents:: Table of Contents
+
+Description
+===========
+
+CGI programs allow you to enhance the functionality of the server in a very
+straight and simple way..
+
+Options
+=======
+
+cgi.assign
+
+ file-extensions that are handled by a CGI program
+
+ e.g.: ::
+
+ cgi.assign = ( ".pl" => "/usr/bin/perl",
+ ".cgi" => "/usr/bin/perl" )
+
+Examples
+========
+
+To setup a executable which doesn't need the help of a external program you
+just don't specify a handler for the extension. ::
+
+ cgi.assign = ( ".sh" => "" )
+
+If the file has no extension keep in mind that lighttpd matches not the
+extension itself but the right part of the URL: ::
+
+ cgi.assign = ( "/testfile" => "" )