Using Ring's Jetty adapter, if my request is too large I get a 413: FULL HEAD error. I tracked it down to a property called headerbuffersize, but when I try to set it in the run-jetty call, I still get the 413's. Is there a better way to control jetty config from Ring?
(ring/run-jetty
(var app)
{:port port :join? false
:headerbuffersize 1048576})
What is the right way to do this?
Thanks!