I setup a web server with Nginx, and I use nginx-gridfs module to access the Mongodb content and use http_mp4_module to play the mp3 file as stream on client, both above services are working fine standalone, but when I try to combine these two services, and try to access the mp3 file which stored in Mongodb and play it as stream on client, there is a 404 error appeared, this sounds that the http_mp4_module can not work with Gridfs, it needs a real file which existed in File System. Below are my Nginx configuration setting:
For accessing Mongodb content: (I can access the mp3 file with URL http:// myhost/voice/mp3/xxxxxx.mp3)
location /voice/mp3/ {
gridfs whatsup
field=filename
type=string
root_collection=storage.voice.mp3;
mongo localhost:27017;
}
For playing mp3 file on client as stream (I can play the mp3 with browser with URL http:// myhost/mp3/xxxxxx.mp3, the mp3 file is existed in file system)
location /mp3 {
root /var/www/html/;
mp4;
}
both above services are working fine, but when I combine them, it does not work, the configuration as below:
location /play/mp3 {
gridfs whatsup
field=filename
type=string
root_collection=storage.voice.mp3;
mongo localhost:27017;
mp4;
}
when I try access URL http:// myhost/play/mp3/xxxxxx.mp3 with browser and play with it, it shows me 404 error.
is there any idea to combine both services? or whether or not there is something I missed?
