PSGI
- Superglue interface between perl web applications and web servers
- In PSGI, we use the
$env
hash references and the psgi.input and psgi.errors streams to pass that data between servers and applications. - In PSGI, applications are supposed to return a HTTP status code, headers, and body (as an array ref or a filehandle-like object) to the application as an array reference.