Hi,
I use nginx as a proxy to a backend where I upload files. It works fine.
Now I also want to store uploaded files on the same host where nginx runs in addition to the backend.
So to me it looks like uploading process parallelization where nginx saves data to local disk and passes the same data to the backend (like buffering but with ability to use buffered file after the process completed).
Is it possible with nginx and any module ?
Thank you for answers.