diff options
author | Dmitriy Zaporozhets <dzaporozhets@gitlab.com> | 2014-12-03 10:22:25 +0000 |
---|---|---|
committer | Dmitriy Zaporozhets <dzaporozhets@gitlab.com> | 2014-12-03 10:22:25 +0000 |
commit | 03d1ee17eb12feef410eb85667c74dfcf32bf75a (patch) | |
tree | a431e8f8cc2522ad04ba80c396fcd58975b2aa68 | |
parent | a70e7d61acfa6eb41acf049ece0ca39ac70de09a (diff) | |
parent | 79912d6870ec019fa0100c1ced1c5a2c1f9c3227 (diff) | |
download | gitlab-ce-03d1ee17eb12feef410eb85667c74dfcf32bf75a.tar.gz |
Merge branch 'reintroduce_minimum_gitlab_resources' into 'master'
Reintroduce minimum gitlab system requirement
As per https://dev.gitlab.org/gitlab/gitlabhq/merge_requests/1249#note_29946
See merge request !1286
-rw-r--r-- | doc/install/requirements.md | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/install/requirements.md b/doc/install/requirements.md index fd59ac8a073..2b60c3560a5 100644 --- a/doc/install/requirements.md +++ b/doc/install/requirements.md @@ -50,6 +50,12 @@ We love [JRuby](http://jruby.org/) and [Rubinius](http://rubini.us/) but GitLab ### Memory +- 512MB is the absolute minimum but we do not recommend this amount of memory. +You will need to configure minimum 1.5GB of swap space. +With 1.5GB of swap space you must configure only one unicorn worker. +With one unicorn worker only git over ssh access will work because the git over HTTP access requires two running workers (one worker to receive the user request and one worker for the authorization check). +If you use SSD storage and configure 1.5GB of swap space you can use two Unicorn workers, this will allow HTTP access but it will still be slow. +Consider installing GitLab on Ubuntu as installation on CentOS could be unsuccessful with this amount of memory. - 1GB RAM + 1GB swap supports up to 100 users - **2GB RAM** is the **recommended** memory size and supports up to 500 users - 4GB RAM supports up to 2,000 users @@ -85,7 +91,7 @@ On a very active server (10,000 active users) the Sidekiq process can use 1GB+ o ## Supported web browsers - Chrome (Latest stable version) -- Firefox (Latest released version and [latest ESR version](https://www.mozilla.org/en-US/firefox/organizations/)) +- Firefox (Latest released version and [latest ESR version](https://www.mozilla.org/en-US/firefox/organizations/)) - Safari 7+ (known problem: required fields in html5 do not work) - Opera (Latest released version) - IE 10+ |