HTTP test server: print all client requests to stdout HTTP test server: print all client requests to stdout curl curl

HTTP test server: print all client requests to stdout


I always use nc (netcat) for this, in a style like:

nc -l -p 8080

It isn't really a "HTTP server" but only a dumb TCP server, but if you're mostly interested in seeing the client request and not necessarily serving back a proper HTTP response then it is good enough.