Module server
Available on crate feature
fastcgi only.Expand description
FastCGI server implementation for Rama.
FastCgiServer accepts incoming IO streams and handles the FastCGI framing.
It dispatches each request to an inner Service and writes the response back
over the same connection.
The inner service receives a FastCgiRequest and must return a FastCgiResponse.
Structs§
- Error
- Error returned by the
FastCgiServerwhen handling a connection. - Fast
CgiRequest - A complete FastCGI request received from a web server.
- Fast
CgiResponse - A FastCGI response to be sent back to the web server.
- Fast
CgiServer - FastCGI server that accepts connections and dispatches requests to an inner service.
- Server
Options - Configuration for
FastCgiServer.