Hi,
Starting converting an app over to use phoenix & elixir 1.0+. I'm working with large files, and need to increase the default limit set by the cowboy adapter.
which is called by the multipart plug:
This is my first time using Plug, so - not quite sure where to init Plug.Conn with the option within Phoenix. I am looking to set it at the controller level.
For the controller, I am not using Plug.Upload directly, I use the reference supplied by Plug.Conn. Thus, I am not sure how to pass the length option so the Connection will use it. How can this be done?
I'd like to know where this should be set (if not at the controller), and what some options for setting the options are?
Thanks
-- Randy