My application consists of a UI web server and an application web server, both of them communicates through a message bus.
now I want to let user upload a file through their web browser, the problem is, user's browser is connecting UI web server, but I want to the file is finally uploaded to application web server.
How can I do this? Can I redirect all http upload requests to application server? Is there any example I can follow? thank you