a fast and simple interface between web servers and application servers (similar to FastCGI)
License
nascheme/scgi
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
main
Could not load branches
Nothing to show
Could not load tags
Nothing to show
{{ refName }}
default
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code
-
Clone
Use Git or checkout with SVN using the web URL.
Work fast with our official CLI. Learn more.
- Open with GitHub Desktop
- Download ZIP
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
SCGI: A Simple Common Gateway Interface alternative
===================================================
Protocol
--------
SCGI is a protocol for connecting web application servers to HTTP
servers (e.g. Apache). For typical applications, it provides much
better performance verses using CGI. See http://python.ca/scgi/ for
details on the SCGI protocol including a specification.
Software
--------
See doc/guide.html for an overview of how SCGI works. Below is a
list of components included in this package.
scgi
----
A Python package implementing the server side of the SCGI
protocol.
apache2
-------
An Apache 2.0 module that implements the client side of the
protocol. See the README file in the apache2 directory for more
details.
cgi2scgi
--------
A CGI script that forwards requests to a SCGI server. This is
useful in situations where you cannot or do not want to use the
mod_scgi module. Because the CGI script is small performance is
quite good.
To use, edit the source and specify the correct address and port
of the SCGI server. Next, compile using a C compiler, e.g.:
$ cc -o myapp.cgi cgi2scgi.c
Finally, put the script in the proper directory (depends on web
server software used).
Source
------
The source code is managed using git. You can checkout a copy using
the command:
git clone http://quixote.ca/src/scgi.git
License
-------
The SCGI package is copyrighted and made available under open source
licensing terms. See the LICENSE.txt file for the details. The
CHANGES.txt file summarizes recent changes made to the package.
/* vim: set ai tw=74 et sw=4 sts=4: */
About
a fast and simple interface between web servers and application servers (similar to FastCGI)
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published