izaurio / pavo

Server-side upload service for jQuery-File-Upload written in Golang
MIT License
79 stars 19 forks source link

documentation improvement #10

Open mikhailov opened 9 years ago

mikhailov commented 9 years ago

The built-in Nginx core upload functionality (aka client_body_in_file_only) is not well known way to go due to lack of knowledge base. It does not support multipart/form-data, but AJAX or direct binary upload from mobile devices. In your case AJAX upload with conjunction of client_body_in_file_only is the best solution. The second advantage is to having authentication check before the request is being processed.

I would like to recommend to extend README file or Wiki to spread knowledge how to use it. I shared few bits and bobs on Coderwall, maybe useful: https://coderwall.com/p/swgfvw/nginx-direct-file-upload-without-passing-them-through-backend

izaurio commented 9 years ago

Thanks. We will add the detailed description.