https://github.com/svenvc/s-http-server.git
git clone 'https://github.com/svenvc/s-http-server.git'
(ql:quickload :s-http-server)
S-HTTP-SERVER
is a minimal standalone HTTP Server.
This simple package is used as a building block in a number of other open source projects.
S-HTTP-SERVER
can:
S-HTTP-SERVER
is considered stable code.
S-HTTP-SERVER
was featured in my first Lisp
Movie: Episode 1: HTTP Client and
Server [dead link].
Jean-François Brouillet has written an excellent tutorial on using
S-HTTP-SERVER,
complete with screenshots and code examples.S-HTTP-SERVER
is written in ANSI standard Common Lisp and should be
portable across any CL implementation.
The S-HTTP-SERVER
package is loaded using
ASDF. There is an excellent tutorial on
ASDF to get you started.
CL-USER 1 > (asdf:oos 'asdf:load-op :`S-HTTP-SERVER`)
Basically, you create an S-HTTP-SERVER
object and start it. Out of the
box only the status/debug page
http://localhost:1701/s-http-server
is served. By registering new context handlers you can configure the
server further. The static-resource-handler hosts static documents from
a root directory in the file system. It is possible to write your own
handlers, look at the code of static-resource-handler and
S-HTTP-SERVER
-handler for guidance.
CL-USER 1 > (in-package :`S-HTTP-SERVER`)
#<The `S-HTTP-SERVER` package, 90/128 internal, 31/64 external>
`S-HTTP-SERVER` 2 > (defvar *server* (make-`S-HTTP-SERVER`))
*SERVER*
`S-HTTP-SERVER` 3 > (start-server *server*)
;; `S-HTTP-SERVER`: Started a new server on port 1701
#<`S-HTTP-SERVER` "`S-HTTP-SERVER`" port 1701 running 10C5F6EB>
`S-HTTP-SERVER` 4 > (register-context-handler *server* "/my-site" 'static-resource-handler :arguments '("/var/www/"))
((STATIC-RESOURCE-HANDLER "/my-site" "/var/www/") (`S-HTTP-SERVER`-HANDLER "/`S-HTTP-SERVER`" :BUILTIN))
`S-HTTP-SERVER` 5 > (stop-server *server*)
;; `S-HTTP-SERVER`: Stopped server
#<`S-HTTP-SERVER` "`S-HTTP-SERVER`" port 1701 not running 10C5F6EB>
Jean-François Brouillet has written an excellent tutorial on using S-HTTP-SERVER, complete with screenshots and code examples.
There is automatically generated API Reference documentation
available for the S-HTTP-SERVER
package.
The KPAX mailing list is used for this project.
Release Notes:
S-HTTP-SERVER
into a seperate project under a new
structureThere is currently no TODO list.
Nothing appropriate.
There are no known bugs.
S-HTTP-SERVER
was written by Sven Van
Caekenberghe.
S-HTTP-SERVER
is being maintained by Sven Van
Caekenberghe.
You are granted the rights to distribute and use this software as governed by the terms of the Lisp Lesser General Public License (http://opensource.franz.com/preamble.html), also known as the LLGPL.
This is a new project.
The reference for the HTTP protocol is RFC 2616. Also worth reading is the Wikipedia article about HTTP.
Copyright © 2005, 2006 Sven Van Caekenberghe, Beta Nine BVBA. All Right Reserved.