3 Launching Servers
This module provides functions for launching dispatching servers.
| ||||||||||||||||||||||||||||||||||||
→ (-> void) | ||||||||||||||||||||||||||||||||||||
dispatch : dispatcher/c | ||||||||||||||||||||||||||||||||||||
confirmation-channel : (or/c false/c async-channel?) = #f | ||||||||||||||||||||||||||||||||||||
connection-close? : boolean? = #f | ||||||||||||||||||||||||||||||||||||
tcp@ : (unit/c (import) (export tcp^)) = raw:tcp@ | ||||||||||||||||||||||||||||||||||||
port : tcp-listen-port? = 80 | ||||||||||||||||||||||||||||||||||||
listen-ip : (or/c string? false/c) = #f | ||||||||||||||||||||||||||||||||||||
max-waiting : integer? = 40 | ||||||||||||||||||||||||||||||||||||
initial-connection-timeout : integer? = 60 |
Constructs an appropriate dispatch-server-config^, invokes the
dispatch-server@, and calls its serve function.
If connection-close? is #t, then every connection is closed after one
request. Otherwise, the client decides based on what HTTP version it uses.
The #:tcp@ keyword is provided for building an SSL server. See How do I set up the server to use HTTPS?.
Here’s an example of a simple web server that serves files
from a given path:
(define (start-file-server base) (serve #:dispatch (files:make #:url->path (make-url->path base) #:path->mime-type (lambda (path) #"application/octet-stream")) #:port 8080))
| ||||||||||||||||||||||||||||||||||||
→ (-> void) | ||||||||||||||||||||||||||||||||||||
dispatch : dispatcher/c | ||||||||||||||||||||||||||||||||||||
confirmation-channel : (or/c false/c async-channel?) = #f | ||||||||||||||||||||||||||||||||||||
connection-close? : boolean? = #f | ||||||||||||||||||||||||||||||||||||
tcp@ : (unit/c (import) (export tcp^)) = raw:tcp@ | ||||||||||||||||||||||||||||||||||||
ports : (listof tcp-listen-port?) = (list 80) | ||||||||||||||||||||||||||||||||||||
listen-ip : (or/c string? false/c) = #f | ||||||||||||||||||||||||||||||||||||
max-waiting : integer? = 40 | ||||||||||||||||||||||||||||||||||||
initial-connection-timeout : integer? = 60 |
Calls serve multiple times, once for each port, and returns
a function that shuts down all of the server instances.
| ||||||||||||||||||||||||||||||||
→ (-> void) | ||||||||||||||||||||||||||||||||
dispatch : dispatcher/c | ||||||||||||||||||||||||||||||||
confirmation-channel : (or/c false/c async-channel?) = #f | ||||||||||||||||||||||||||||||||
connection-close? : boolean? = #f | ||||||||||||||||||||||||||||||||
tcp@ : (unit/c (import) (export tcp^)) = raw:tcp@ | ||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||
max-waiting : integer? = 40 | ||||||||||||||||||||||||||||||||
initial-connection-timeout : integer? = 60 |
Calls serve/ports multiple times, once for each ip, and returns
a function that shuts down all of the server instances.
(serve/web-config@ config@ [#:tcp@ tcp@]) → (-> void) |
config@ : (unit/c (import) (export web-config^)) |
tcp@ : (unit/c (import) (export tcp^)) = raw:tcp@ |
Starts the Web Server with the settings defined by the given web-config^ unit.
It is very useful to combine this with configuration-table->web-config@ and configuration-table-sexpr->web-config@:
(do-not-return) → void |
This function does not return. If you are writing a script to load the Web Server
you are likely to want to call this functions at the end of your script.
3.1 Simple Single Servlet Servers
These functions optimize the construction of dispatchers and launching of servers for single servlets and interactive development.
| ||||||||||||||||||||||||||||
→ dispatcher/c | ||||||||||||||||||||||||||||
start : (request? . -> . response?) | ||||||||||||||||||||||||||||
regexp : regexp? = #rx"" | ||||||||||||||||||||||||||||
stateless? : boolean? = #f | ||||||||||||||||||||||||||||
stuffer : (stuffer/c serializable? bytes?) = default-stuffer | ||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||
servlet-current-directory : path-string? = (current-directory) |
serve/servlet starts a server and uses a particular dispatching sequence. For some applications, this
nails down too much, but users are conflicted, because the interface is so convenient. For those users, dispatch/servlet
does the hardest part of serve/servlet and constructs a dispatcher just for the start servlet.
The dispatcher responds to requests that match regexp. The current directory
of servlet execution is servlet-current-directory.
If stateless? is true, then the servlet is run as a stateless
module and stuffer is used
as the stuffer.
The servlet is loaded with manager as its continuation manager. (The default manager limits the amount of memory to 64 MB and
deals with memory pressure as discussed in the make-threshold-LRU-manager documentation.)
| ||||||||||||||||||||||||||||||||
→ void | ||||||||||||||||||||||||||||||||
make-dispatcher : (semaphore? . -> . dispatcher/c) | ||||||||||||||||||||||||||||||||
connection-close? : boolean? = #f | ||||||||||||||||||||||||||||||||
launch-path : (or/c false/c string?) = #f | ||||||||||||||||||||||||||||||||
banner? : boolean? = #f | ||||||||||||||||||||||||||||||||
listen-ip : (or/c false/c string?) = "127.0.0.1" | ||||||||||||||||||||||||||||||||
port : number? = 8000 | ||||||||||||||||||||||||||||||||
ssl-cert : (or/c false/c path-string?) = #f | ||||||||||||||||||||||||||||||||
ssl-key : (or/c false/c path-string?) = #f |
The other interesting part of serve/servlet is its ability to start up a server and immediately
launch a browser at it. This is provided by serve/launch/wait.
It starts a server using the result of make-dispatcher as the dispatcher. make-dispatcher is supplied
a semaphore that if posted, will cause the server to quit.
If launch-path is not false, then a browser is launched with that path appended to the URL to the server itself.
If banner? is true, then a banner is printed informing the user of the server’s URL.
The server listens on listen-ip and port port. If listen-ip is #f, then the server accepts
connections to all of the listening machine’s addresses. Otherwise, the server accepts connections only at the interface(s) associated with the given string.
For example, providing "127.0.0.1" (the default) as listen-ip creates a server that accepts only connections to "127.0.0.1" (the loopback interface) from the local machine.
If ssl-key and ssl-cert are not false, then the server runs in HTTPS mode with ssl-cert
and ssl-key as paths to the certificate and private key.
If connection-close? is #t, then every connection is closed after one
request. Otherwise, the client decides based on what HTTP version it uses.