I'm currently running a couple of Web servers (one is Apache 2.4 based, another is running nginx 1.8).
I need to set a rate limit, on each individual GET/POST request, that can throttle both download and upload speed.
I've googled around but every solution I've found seems to focus on download rate only, and I can't find a way to set a limit also on data sent from the client to the server in a request body.
I need this because most requests are related to file uploads.
Any suggestion would be greatly appreciated. Thanks!