An open API service indexing awesome lists of open source software.

https://github.com/nousefreak/http-debug


https://github.com/nousefreak/http-debug

Last synced: 9 months ago
JSON representation

Awesome Lists containing this project

README

          

# http-debug

Ultra small webserver that prints and logs your requests.

```bash
$ docker run -d -p 8080:8080 nousefreak/http-debug
```

```bash
$ curl 127.0.0.1:8080/sdf -H "Host:somehost.com" -H "X-Custom-Header: bla"
GET /sdf HTTP/1.1
Host: somehost.com
Accept: */*
User-Agent: curl/7.54.0
X-Custom-Header: bla
```