Commit 2dc4179d7f43b7fc89a8427ccb83b8f3e5809c51

Authored by Sam Gleske
1 parent 3235d2c3

updating structure doc

Showing 1 changed file with 7 additions and 13 deletions   Show diff stats
doc/install/structure.md
@@ -10,18 +10,12 @@ This is the directory structure you will end up with following the instructions @@ -10,18 +10,12 @@ This is the directory structure you will end up with following the instructions
10 | |-- gitlab-shell 10 | |-- gitlab-shell
11 | |-- repositories 11 | |-- repositories
12 12
  13 +* `/home/git/.ssh` - contains openssh settings. Specifically the `authorized_keys` file managed by gitlab-shell.
  14 +* `/home/git/gitlab` - GitLab core software.
  15 +* `/home/git/gitlab-satellites` - checked out repositories for merge requests and file editing from web UI. This can be treated as a temporary files directory.
  16 +* `/home/git/gitlab-shell` - Core add-on component of gitlab. Maintains SSH cloning and other functionality.
  17 +* `/home/git/repositories` - bare repositories for all projects organized by namespace. This is where the git repositories which are pushed/pulled are maintained for all projects. **This area is critical data for projects. [Keep a backup](../raketasks/backup_restore.md)**
13 18
14 -**/home/git/.ssh** 19 +*Note: the default locations for gitlab-satellites and repositories can be configured in `config/gitlab.yml` of gitlab and `config.yml` of gitlab-shell.*
15 20
16 -**/home/git/gitlab**  
17 - This is where GitLab lives.  
18 -  
19 -**/home/git/gitlab-satellites**  
20 - Contains a copy of all repositories with a working tree.  
21 - It's used for merge requests, editing files, etc.  
22 -  
23 -**/home/git/repositories**  
24 - Holds all your repositories in bare format.  
25 - This is the place Git uses when you pull/push to your projects.  
26 -  
27 -You can change them in your `config/gitlab.yml` file. 21 +To see a more in-depth overview see the [GitLab architecture doc](../development/architecture.md).