How to increase the file size that can be received by the server in luminus with a post request?
I tried adding max-body
(mount/defstate ^{:on-reload :noop} http-server
:start
(http/start
(-> env
(assoc :handler (handler/app))
(update :port #(or (-> env :options :port) %))
(assoc :max-body 12800000)
(select-keys [:handler :host :port])))
But this doesn’t seem to work.