Would it be possible, that the upload module would respond only to certain http verbs like PUT, POST and pass the data on unsupported verbs to a custom backend.
Our API is RESTfull, and because of that we'd like to have the same uri for download/upload, but with different http verb. We looked at the code a bit and it seems that its not possible to do so because upload module is registered as content handler. Adding try_files into the same section doesn't work because try_files takes precedence.
Would it be possible, that the upload module would respond only to certain http verbs like PUT, POST and pass the data on unsupported verbs to a custom backend.
Our API is RESTfull, and because of that we'd like to have the same uri for download/upload, but with different http verb. We looked at the code a bit and it seems that its not possible to do so because upload module is registered as content handler. Adding try_files into the same section doesn't work because try_files takes precedence.