推送到 Mercurial 存储库 (bitbucket) 会产生“请求实体太大”?

发布于 2024-08-23 19:23:22 字数 129 浏览 8 评论 0原文

当您尝试推送到 Bitbucket 上的 Mercurial 存储库并生成响应时,这意味着什么:

abort: HTTP Error 413: Request Entity Too Large

What does it mean when you try to push to a Mercurial repository on Bitbucket and it produces the response:

abort: HTTP Error 413: Request Entity Too Large

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

十年九夏 2024-08-30 19:23:22

请考虑向 bitbucket 团队询问。同时您可以尝试使用 ssh 访问而不是 http。

Consider asking this the bitbucket team. In the meanwhile you could try using ssh access instead of http.

听风吹 2024-08-30 19:23:22

看起来 BitBucket 对 HTTP 上传有大小限制,而您超出了它们。您上传的大文件可能会破坏某些内容。尝试排除该文件,看看会发生什么。

http://www.checkupdown.com/status/E413.html

http://forums.asp.net/p/1191089/2046229.aspx#2046229

Looks like BitBucket has a size limit on HTTP uploads and you are exceeding them. It is probably a large file that you are uploading that is breaking things. Try excluding that one file and see what happens.

http://www.checkupdown.com/status/E413.html

http://forums.asp.net/p/1191089/2046229.aspx#2046229

穿透光 2024-08-30 19:23:22

这意味着您已达到 Bitbucket 或 @TheSteve0 指出的其他事物设置的上传限制。

如果您在 nginx 后面运行,请记住默认上传大小为 1MB。要增加它,请将以下内容添加到 nginx.conf 的“http”部分;

http {
    ...
    client_max_body_size 10M;

然后重启nginx

It means that you've reached an upload limit set by Bitbucket or another thing as @TheSteve0 has pointed out.

If you are running behind nginx remember that the default upload size is 1MB. To increase it add the following to the "http" section of nginx.conf;

http {
    ...
    client_max_body_size 10M;

Then restart nginx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文