Commit 5ae9de74039170e20efac816726f4eb00fa0aeb3

Authored by Dmitriy Zaporozhets
2 parents 2ae6f17d b5264c24

Merge branch 'increase-nginx-push-size' into 'master'

Increase Nginx Push Size
Showing 2 changed files with 2 additions and 1 deletions   Show diff stats
CHANGELOG
1 1 v 6.7.0
  2 + - Increased the example Nginx client_max_body_size from 5MB to 20MB, consider updating it manually on existing installations
2 3 - Add support for Gemnasium as a Project Service (Olivier Gonzalez)
3 4 - Add edit file button to MergeRequest diff
4 5 - Public groups (Jason Hollingsworth)
... ...
lib/support/nginx/gitlab
... ... @@ -27,7 +27,7 @@ server {
27 27  
28 28 # Increase this if you want to upload large attachments
29 29 # Or if you want to accept large git objects over http
30   - client_max_body_size 5m;
  30 + client_max_body_size 20m;
31 31  
32 32 # individual nginx logs for this gitlab vhost
33 33 access_log /var/log/nginx/gitlab_access.log;
... ...