https://github.com/vitan/nginx-log-request-body
nginx-log-request-body is logging the request_body , which is useful to me on debugging distributed apps deploying different servers. By making the apps post data to nginx-log-request-body server, I can debug sth.
docker logs -f `docker run -p 80:80 -d 2breakfast/nginx-log-request-body:latest`
bash
curl -X POST http://localhost:80/post -d 'test'