gitlab CI/CD脑瘫问题‘too large archive’
本文最后更新于 870 天前,其中的信息可能已经有所发展或是发生改变
  1. 在使用gitlab-ci编译Android项目时,出现以下问题
  • 大概是说提交体积过大引发接受端 413 错误,可是这是怎么回事呢?于是我使用 ERROR: Uploading artifacts to coordinator... too large archive 搜索了 BING cn, Google, BaiDu, 最终有两种方案:
In your gitlab, go to Settings > Continuous Integration and Deployment > Maximum artifacts size (MB) and set it to the desired value. The default is 100MB. 

2.

In the gitlab.rb file, mine at /etc/gitlab/gitlab.rb, set or uncomment the following line.
nginx['client_max_body_size'] = '250m' 
  • 尝试后都无效。。。。

3. 然后想起来,我的gitlab使用的是外部nginx反向代理

  • nginx配置文件加入
server {
  listen 443 ssl;
  server_name xxx.xxx.xyz;
  ssl_certificate /usr/local/openresty/nginx/xxx.xxx.xyz_nginx/xxx.xxx.xyz_bundle.crt;
  ssl_certificate_key /usr/local/openresty/nginx/xxx.xxx.xyz_nginx/xxx.xxx.xyz.key;
  proxy_set_header Host $http_host;
  client_max_body_size 0;
location / {
    proxy_pass https://127.0.0.1:4433;
  }
}
  • 注意!!!
  # client_max_body_size 用来修改允许客户端上传文件的大小。默认为1m,如果设置为0,表示上传文件大小不受限制。
  # 可以在以下模块设置: http, server, location 
  client_max_body_size 10m;
  • 重启nginx
nginx -t
nginx -s reload
博客内容均系原创,未经允许严禁转载!
暂无评论

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇
首页