A minimalistic http(s) server to aid remote access http debugging.
Download the latest release for your os-arch and use directly on your machine.
Build the executable for the target os (e.g. linux):
CGO_ENABLED=0 GOOS=linux go build -o server main.goRun the server with optional flags:
# start the http server on port 8080
./server --port 8080
# start the http(s) server on port 443
./server --tls --port 443 --cert <path_to_tls_cert.pem> --key <path_to_tls_key.pem>