使用proxy_pass时Nginx返回404而不是400

时间:2020-02-03 19:41:25

标签: nginx proxypass

我将nginx配置为将所有内容传递到本地主机上的应用程序:10000。

它工作正常,只是当它应返回400并带有json时,即使应用返回json时400仍会在浏览器中显示404。有什么想法吗?

db.runCommand(
    {
        aggregate: "products", pipeline: [
            //{ $match: { "item": { $in: ["planner", "paper","journal"] } } },
            {
                $match: {
                    instock: {
                        $elemMatch: {
                            warehouse: "A",
                            qty: {
                                $gt: [
                                    {$convert:{ input: "$qty", to: "double" }}, 5]
                            }
                        }
                    }
                }
            },
            { $project: { _id: 0 } }],
        cursor: { batchSize: 200 }
    });

0 个答案:

没有答案