summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-03-18 01:26:39 +0000
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-03-18 01:26:39 +0000
commit560a29e660eea0f5ffd8de2e456d3cef3fb3771e (patch)
treec245a204e2a1d3c0c9f5aa88c116473c27b3a99a /doc
parentf8c8d988e85bd62abbba3a0433e5a74c47b6245d (diff)
parenta2fb3711f07eba7fc33b798cee1827c95b204ca8 (diff)
downloadgitlab-ce-560a29e660eea0f5ffd8de2e456d3cef3fb3771e.tar.gz
Merge branch 'replace-linux-with-gnu-linux' into 'master'
Replace linux with gnu linux To recognize the work of Dr. Stallman. See merge request !391
Diffstat (limited to 'doc')
-rw-r--r--doc/development/architecture.md2
-rw-r--r--doc/ssh/README.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/development/architecture.md b/doc/development/architecture.md
index 714cc016004..541af487bb1 100644
--- a/doc/development/architecture.md
+++ b/doc/development/architecture.md
@@ -54,7 +54,7 @@ To serve repositories over SSH there's an add-on application called gitlab-shell
![GitLab Diagram Overview](gitlab_diagram_overview.png)
-A typical install of GitLab will be on Ubuntu Linux or RHEL/CentOS. It uses Nginx or Apache as a web front end to proxypass the Unicorn web server. By default, communication between Unicorn and the front end is via a Unix domain socket but forwarding requests via TCP is also supported. The web front end accesses `/home/git/gitlab/public` bypassing the Unicorn server to serve static pages, uploads (e.g. avatar images or attachments), and precompiled assets. GitLab serves web pages and a [GitLab API](https://gitlab.com/gitlab-org/gitlab-ce/tree/master/doc/api) using the Unicorn web server. It uses Sidekiq as a job queue which, in turn, uses redis as a non-persistent database backend for job information, meta data, and incoming jobs.
+A typical install of GitLab will be on GNU/Linux. It uses Nginx or Apache as a web front end to proxypass the Unicorn web server. By default, communication between Unicorn and the front end is via a Unix domain socket but forwarding requests via TCP is also supported. The web front end accesses `/home/git/gitlab/public` bypassing the Unicorn server to serve static pages, uploads (e.g. avatar images or attachments), and precompiled assets. GitLab serves web pages and a [GitLab API](https://gitlab.com/gitlab-org/gitlab-ce/tree/master/doc/api) using the Unicorn web server. It uses Sidekiq as a job queue which, in turn, uses redis as a non-persistent database backend for job information, meta data, and incoming jobs.
The GitLab web app uses MySQL or PostgreSQL for persistent database information (e.g. users, permissions, issues, other meta data). GitLab stores the bare git repositories it serves in `/home/git/repositories` by default. It also keeps default branch and hook information with the bare repository. `/home/git/gitlab-satellites` keeps checked out repositories when performing actions such as a merge request, editing files in the web interface, etc.
diff --git a/doc/ssh/README.md b/doc/ssh/README.md
index 6fe23dfa2a6..66941521c2e 100644
--- a/doc/ssh/README.md
+++ b/doc/ssh/README.md
@@ -45,7 +45,7 @@ clip < ~/.ssh/id_rsa.pub
pbcopy < ~/.ssh/id_rsa.pub
```
-**Linux (requires xclip):**
+**GNU/Linux (requires xclip):**
```bash
xclip -sel clip < ~/.ssh/id_rsa.pub
```