From 84a7bf974d11dd8518364a6fe54d2385c1279a1d Mon Sep 17 00:00:00 2001 From: Jan Kneschke Date: Wed, 15 Jun 2005 09:28:26 +0000 Subject: [PATCH] added docs for scgi git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.3.x@386 152afb58-edef-0310-8abb-c4023f1b3aa9 --- doc/Makefile.am | 6 ++++-- doc/scgi.txt | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 doc/scgi.txt diff --git a/doc/Makefile.am b/doc/Makefile.am index f96f4594..7cb41077 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -28,7 +28,8 @@ mysqlvhost.txt \ access.txt \ traffic-shaping.txt \ setenv.txt \ -status.txt +status.txt \ +scgi.txt HTMLDOCS=accesslog.html \ authentication.html \ @@ -57,7 +58,8 @@ HTMLDOCS=accesslog.html \ access.html \ traffic-shaping.html \ setenv.html \ - status.html + status.html \ + scgi.html EXTRA_DIST=lighttpd.conf lighttpd.user \ rc.lighttpd rc.lighttpd.redhat sysconfig.lighttpd \ diff --git a/doc/scgi.txt b/doc/scgi.txt new file mode 100644 index 00000000..ff849fe0 --- /dev/null +++ b/doc/scgi.txt @@ -0,0 +1,33 @@ +================== +the SCGI Interface +================== + +------------------- +Module: mod_scgi +------------------- + +:Author: Jan Kneschke +:Date: $Date: 2004/11/03 22:26:05 $ +:Revision: $Revision: 1.3 $ + +:abstract: + SCGI is a fast and simplified CGI interface. It is mostly + used by Python + WSGI. + +.. meta:: + :keywords: lighttpd, FastCGI + +.. contents:: Table of Contents + +Description +=========== + +The SCGI module is heavily based on the FastCGI when it comes +to configuration. Only the internal protocol between server +and client has been replaced. Please check the documentation +of the fastcgi module for more information. + +History +======= + +Added in lighttpd 1.3.14 as it was really simple to do.