MK Yung
MK Yung

Reputation: 4581

Nginx write files into GridFS

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

Answers (1)

Mark Stosberg
Mark Stosberg

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

Related Questions