From 6bf5215b2378fdb9cb442a053ddd12570c69d00c Mon Sep 17 00:00:00 2001 From: dosire Date: Mon, 10 Mar 2014 09:11:19 +0100 Subject: [PATCH 1/2] Some people are getting the error 'The remote end hung up unexpectedly' due to large chuncks. --- lib/support/nginx/gitlab | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/support/nginx/gitlab b/lib/support/nginx/gitlab index 882f038604..7a0f3efbb5 100644 --- a/lib/support/nginx/gitlab +++ b/lib/support/nginx/gitlab @@ -27,7 +27,7 @@ server { # Increase this if you want to upload large attachments # Or if you want to accept large git objects over http - client_max_body_size 5m; + client_max_body_size 20m; # individual nginx logs for this gitlab vhost access_log /var/log/nginx/gitlab_access.log; From b5264c24e89dc882cb42802fe1d8d5e2f5012c46 Mon Sep 17 00:00:00 2001 From: dosire Date: Mon, 10 Mar 2014 09:15:30 +0100 Subject: [PATCH 2/2] Update changelog. --- CHANGELOG | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG b/CHANGELOG index 913dbab57c..c8bbce73f5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,5 @@ v 6.7.0 + - Increased the example Nginx client_max_body_size from 5MB to 20MB, consider updating it manually on existing installations - Add support for Gemnasium as a Project Service (Olivier Gonzalez) - Add edit file button to MergeRequest diff - Public groups (Jason Hollingsworth)