debian-mirror-gitlab/doc/install/structure.md

20 lines
1 KiB
Markdown
Raw Normal View History

2014-09-02 18:07:02 +05:30
# GitLab directory structure
This is the directory structure you will end up with following the instructions in the Installation Guide.
|-- home
| |-- git
| |-- .ssh
| |-- gitlab
| |-- gitlab-shell
| |-- repositories
* `/home/git/.ssh` - contains openssh settings. Specifically the `authorized_keys` file managed by gitlab-shell.
* `/home/git/gitlab` - GitLab core software.
2015-04-26 12:48:37 +05:30
* `/home/git/gitlab-shell` - Core add-on component of GitLab. Maintains SSH cloning and other functionality.
2014-09-02 18:07:02 +05:30
* `/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)**
2015-09-25 12:07:36 +05:30
*Note: the default locations for repositories can be configured in `config/gitlab.yml` of GitLab and `config.yml` of gitlab-shell.*
2014-09-02 18:07:02 +05:30
To see a more in-depth overview see the [GitLab architecture doc](../development/architecture.md).