Simple HTTP microservice to respond with the client’s IP.
- It does not work in Docker. One gets back the Docker bridge’s address.
raco pkg install --link --auto # Install from git.
serveip --log-file requests.log :: 8080 # Log to `requests.log' and listen on all addresses on port 8080.
racket -l serveip -- --log-file requests.log :: 8080 # Without user scope script path in $PATH.
curl localhost:8080 # Get your IP address.
MIT. See LICENSE.