嗨,我正在尝试将Nginx设置为访问MongoDB数据库的反向代理.默认情况下,Mongo侦听27017端口.我想做的是通过Nginx重定向一个主机名,例如mongodb.mysite.com,并将其传递给mongodb服务器.以这种方式从外部网络我将已知27017端口关闭,并从隐藏的URL访问我的数据库,就像我给出的例子.
所以我试图用这个配置设置Nginx:
server {
listen 80;
server_name mongo.mysite.com;
gzip off;
location / {
proxy_pass http://127.0.0.1:27017;
proxy_redirect off;
proxy_buffering off;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
}
}
所以在这之后,我尝试使用mongo mongo.mysite.com:80命令从我的cmd连接mongo shell,并且我收到以下错误:
2015-08-06T13:44:32.670+0300 I NETWORK recv(): message len 1347703880 is invalid. Min 16 Max: 48000000
2015-08-06T13:44:32.670+0300 I NETWORK DBClientCursor::init call() Failed
2015-08-06T13:44:32.674+0300 E QUERY Error: DBClientBase::findN: transport error: mongo.therminate.com:80 ns: admin.$cmd query: { whatsmyuri: 1 }
at connect (src/mongo/shell/mongo.js:181:14)
at (connect):1:6 at src/mongo/shell/mongo.js:181
exception: connect Failed
另外在Nginx访问日志我得到这个:
94.66.184.128 - - [06/Aug/2015:10:44:32 +0000] "<\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xD4\x07\x00\x00\x00\x00\x00\x00admin.$cmd\x00\x00\x00\x00\x00\x01\x00\x00\x00\x15\x00\x00\x00\x10whatsmyuri\x00\x01\x00\x00\x00\x00" 400 172 "-" "-"
有没有人有想法,这里有什么问题?谢谢!
最佳答案