diff options
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | lib/support/nginx/gitlab | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG index 913dbab57cc..c8bbce73f5a 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) diff --git a/lib/support/nginx/gitlab b/lib/support/nginx/gitlab index 882f0386046..7a0f3efbb53 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; |