In my project, I need to do this:
server1 ---http-download (curl)---> my pc ---http-upload(curl)---> server2
This is obviously duplicating traffic. I wonder if there is a method to direct server1 to do http upload files to server2 like the following:
my pc ---http-request---> server1 ----http-upload---> server2
Is it possible using existing web servers?
Please note that both servers are not within my system, in other words, server 1 and server 2 are not under my control.