无法从 MAC 或 ubuntu 从 nodejs 中的服务器上传图像

Can not upload image from MAC or ubuntu from server in nodejs

我正在尝试在 nodejs 中使用多方上传图片。它在本地主机上工作正常,但从服务器上传时出现问题。 这是代码

module.exports.uploadimg = function (req, res) {
    var form = new multiparty.Form();

    form.parse(req, function(err, fields, files) {
        if(err) console.log(err)        cloudinary.uploader.upload(files.file[0].path,function(result) { 
        res.send({ result:result,
            serverStatus:200,
            response_message:"image uploaded"       });
        });
    });

}

当我从 Windows 上传图片时它甚至工作正常,但它在通过 MAC 或 Ubuntu.

上传时显示超时

问题是由某些 ec2 服务器设置引起的。我将我的代码迁移到 heroku 服务器,它在那里工作得很好。