I\'m currently using django. And now I need to save a file uploaded by a user to another server which is not the one that serves the django application. The file will be saved
This wont work out of the box, you need to have a mechanism(write some code) to queue the files that are uploaded through django application, then use a middleware(can be in python) to transfer files from queue to your file server. so flow is basically like this: