clj-commons / aleph

Asynchronous streaming communication for Clojure - web server, web client, and raw TCP/UDP
http://aleph.io
MIT License
2.54k stars 241 forks source link

Add support for `max-request-body-size` #663

Closed arnaudgeiser closed 1 year ago

arnaudgeiser commented 1 year ago

It adds the support of max-request-body-size by leveraging HttpObjectAggregator to do so. This aggregator returns 413 Entity Too Large when the content sent to the server is too large.

Closes #452