0

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.

MK Yung
  • 4,344
  • 6
  • 30
  • 35

1 Answers1

1

No. You should upload to GridFS using your web application that Nginx is serving. For example in Perl there's MongoDB::GridFS.

Mark Stosberg
  • 12,961
  • 6
  • 44
  • 49