<div dir="ltr">As noted here -- <a href="https://github.com/gin-gonic/gin/issues/1582">https://github.com/gin-gonic/gin/issues/1582</a> -- I have a simple web app that handles multipart form file uploads correctly on its own, but when I put it behind a simple proxy_pass configuration like below, the underlying application sees a null value where the file form data was.<br><br>This is the configuration I am using:<br><br>location / {<br>    proxy_set_header X-Real-IP $remote_addr;<br>    proxy_set_header X-Forwarded-For $remote_addr;<br>    proxy_set_header Host $host;<br>    proxy_pass <a href="https://127.0.0.1:9001">https://127.0.0.1:9001</a>;<br>}<br><br><div>I have also experimented with setting setting proxy_request_buffering to 'off' but still gave me the same result.</div><div><br></div><div>If it is not a problem with the wen framework (and based on the logs I suspect it is not), how can I update my nginx config so it works properly?</div></div>