Join GitHub today
GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.
Sign up
An implementation of SCGI for the Io programming language
Cannot retrieve the latest commit at this time.
| Type | Name | Latest commit message | Commit time |
|---|---|---|---|
| Failed to load latest commit information. | |||
|
|
example | ||
|
|
io | ||
|
|
.gitignore | ||
|
|
README | ||
README
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