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 r
I think this should work:
(def header-buffer-size 1048576) (def config {:host "example.com" :port 8080 ; join? false ; and any other options... :configurator (fn [jetty] (doseq [connector (.getConnectors jetty)] (.setHeaderBufferSize connector header-buffer-size))) })