This is a simple HTTP server implemented in C++. It accepts HTTP GET and POST requests and serves web pages. It also provides a simple message service that accepts messages via a POST request and displays the last message received.
src/: Contains the source code for the serverperl/: Contains the web pages served by the server and contains helper scripts used in building and managing the server
You can build the project using the provided Makefile:
make allYou can delete the server using the provided Makefile:
make cleanYou can stop the server using the provided Makefile:
make stop