我使用Mailgun API发出此请求:
var filepath = path.join(__dirname, "/output/" + job.jobId + ".zip");
var data = {
from: 'Name <name@url.com>',
to: email,
subject: 'Test',
text: 'Test',
attachment: filepath
};
mailgun_client.messages().send(data, function(error, body) {
if(error) console.log(error)
console.log(body);
});
我收到此错误:
{ [Error: <html>
<head><title>413 Request Entity Too Large</title></head>
<body bgcolor="white">
<center><h1>413 Request Entity Too Large</h1></center>
<hr><center>nginx/1.7.9</center>
</body>
</html>
] statusCode: 413 }
我该如何解决这个问题?这是因为附件太大了吗?
这是在Digital Ocean服务器上运行的,我从未设置过nginx。这只是一个express.js应用程序。