Reputation: 4581
We have the module "nginx-gridfs" (https://github.com/mdirolf/nginx-gridfs) to serve contents OUT of GridFS, but are there any modules that can allow Nginx to accept upload files and write them into GridFS?
The Nginx upload module only supports uploaded files to be written on local file system.
Upvotes: 0
Views: 505
Reputation: 13381
No. You should upload to GridFS using your web application that Nginx is serving. For example in Perl there's MongoDB::GridFS.
Upvotes: 1