Commit ea432f60326752a169d89cee9133280d7d513e65
Exists in
spb-stable
and in
3 other branches
Merge branch 'master' of dev.gitlab.org:gitlab/gitlabhq
Showing
4 changed files
with
11 additions
and
12 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) | ... | ... |
README.md
doc/install/requirements.md
... | ... | @@ -2,26 +2,24 @@ |
2 | 2 | |
3 | 3 | GitLab is developed for the Linux operating system. For the installations options and instructions please see [the installation section of the readme](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/README.md#installation). |
4 | 4 | |
5 | -## GitLab officially supports | |
5 | +## Supported Linux distributions | |
6 | 6 | |
7 | -- Ubuntu Linux | |
8 | -- Debian/GNU Linux | |
9 | - | |
10 | -## GitLab.com offers paid support for | |
11 | - | |
12 | -- Red Hat Enterprise Linux (RHEL) | |
7 | +- Ubuntu | |
8 | +- Debian | |
13 | 9 | - CentOS |
10 | +- RedHat Enterprise Linux | |
11 | +- Scientific Linux | |
14 | 12 | - Oracle Linux |
15 | 13 | |
16 | -## Not officially supported are | |
14 | +## Unsupported Linux distributions | |
17 | 15 | |
18 | 16 | - Arch Linux |
19 | 17 | - Fedora |
20 | 18 | - Gentoo |
21 | 19 | |
22 | -But on the above distributions it is pretty easy to install GitLab yourself. | |
20 | +But on the above unsupported distributions is stll possible to install GitLab yourself with the [manual installation guide](https://github.com/gitlabhq/gitlabhq/blob/master/doc/install/installation.md). | |
23 | 21 | |
24 | -## Unsupported Unix Systems | |
22 | +## Unsupported Unix operating systems | |
25 | 23 | |
26 | 24 | There is nothing that prevents GitLab from running on other Unix operating systems. |
27 | 25 | This means you may get it to work on systems running FreeBSD or OS X. | ... | ... |
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; | ... | ... |