Boa is an open-source, small-footprint web server that is suitable for embedded applications. Originally written by Paul Phillips, it is now maintained by Larry Doolittle and Jon Nelson. Boa is a high performance HTTP Server, and we use the version of Boa modified by Axis.
Boa is a single-tasking HTTP server. Boa does not fork a copy of itself or spawn a thread to handle each incoming connection, but rather internally multiplexes the connections. Boa only forks for CGI programs, automatic directory generation, and automatic file gunzipping, each of which must be a separate process. The primary design goals of Boa are speed and security, in the sense of "can't be subverted by a malicious user", not "fine grained access control and encrypted communications".