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