blob: 5da297f70ee560884ba1b08bc121fe92bbfbd2d0 (
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 about 200 lines of code.
|