jdp/io-scgi
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
master
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 about the CLI.
- 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.
IO SCGI ======= SCGI is a CGI replacement that is just as fast as FastCGI, but simpler to implement. Most modern web servers support this protocol. Read about it at: http://www.mems-exchange.org/software/scgi/ http://python.ca/scgi/ This is a small implementation of the SCGI protocol for Io, which allows you to write blazing-fast internet applications. WHAT'S NEW ========== This is a very early release, with only extremely minimal functionality. The goal is to one day turn use this as a base for an Io web framework, but for now it's a proof-of-concept. HOWTO ===== USE WITH LIGHTTPD Lighttpd comes packaged with a mod_scgi. Open your lighttpd.conf and add mod_scgi to your server.modules. It's not in the list by default, so don't get scared when you notice it's not one of the commented out modules. Just add it. Then add this to your config: scgi.server = ( "/your-scgi-app" => ( "localhost" => ( "host" => "127.0.0.1", "port" => 4000, "check-local" => "disable" ) ) ) Where /your-scgi-app is the directory on your document root that you want to serve SCGI applications from. Finally, set up your SCGI server. A bare-bones implementation is packaged in example.io. To start it up, just cd to its directory and run it. After you run it, go to http://your.web.host/your-scgi-app, and you should see a nice message. If you have, everything is working fine. Justin Poliey <jdp34@njit.edu> 2008
About
An implementation of SCGI for the Io programming language
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published