Expand description
SCGI (Simple Common Gateway Interface) handler.
SCGI is a simpler alternative to FastCGI. The request is encoded as a
netstring (length-prefixed) of NUL-separated key-value pairs followed by a
comma and the raw request body. The response is parsed as a CGI-style
response (headers separated from body by \r\n\r\n).
Reference: https://python.ca/scgi/protocol.txt
Structsยง
- Scgi
Handler - SCGI handler: forwards requests to an SCGI server.