本文最后更新于 870 天前,其中的信息可能已经有所发展或是发生改变
- 在使用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