ABOUT
Minimal and strictly OO HTTP server written in C++. For easy creation of small special-purpose servers. Have a look at the project site for more detailed info: http://sf.net/projects/minhttpd/
DOWNLOAD
Until we have a complete and stable release, we will not release any packages. Until then, you can grab the latest files from the CVS. Have a look at this to learn how. You can also browse the CVS in your web browser.
QUICK HOW-TO
1. Grab the latest version from the CVS.

2. Compile on windows, linux, bsd/mac, or whatever.

3. Modify the config file minhttpd.conf.

SERVLET EXAMPLE
Example of a minimal servlet:

class MyServlet : public Servlet {
  public:
    void service( ServletRequest *req, ServletResponse *res ) {
      res->print("Hello mom!");
    }
}


...and register it:
...
myHttpd->addServlet( new MyServlet() );
...