blob: c47d4e5c99e4beb1b304e17db195d48af5c5fbad (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
micro_httpd is a very small HTTP server. It runs from inetd, which means
its performance is poor. But for low-traffic sites, it's quite adequate.
It implements all the basic features of an HTTP server, including:
* Security against ".." filename snooping.
* The common MIME types.
* Trailing-slash redirection.
* index.html.
* Directory listings.
All in 150 lines of code.
|