nakedmud_webserver/
nakedmud_webserver/webserver/
This is a module that opens an HTTP server on another port that allows 
people to request various sorts of information. Useful for displaying online
who lists, and that sort of junk. Here is a list of steps you will have to take
to install the webserver:

1) Make sure you have NakedMud v2.7 or newer
2) Edit Makefile and add webserver to the list of modules
3) Edit mud.h and add a define for MODULE_WEBSERVER
4) Edit gameloop.c and find the includes for mandatory modules. add:
   #ifdef MODULE_WEBSERVER
   #include "webserver/webserver.h"
   #endif
5) Also in gameloop.c, figure out where optional modules are initialized and
   call the webserver init function as well:
   #ifdef MODULE_WEBSERVER
   init_webserver();
   #endif
6) Choose the port you'd like to run your webserver on in webserver.h, and then
   open the port up on your server
7) Run your mud and test to make sure everything is working. Go to:
   http://<your address>:<your webserver port>/who
   This should display your who list