blob: 4bffe147fd430ff7c99d80bf1044acd2fc2101bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# GitLab user. git by default
user: git
# Url to gitlab instance. Used for api calls. Should be ends with slash.
gitlab_url: "http://localhost/"
http_settings:
# user: someone
# password: somepass
self_signed_cert: false
# Repositories path
# REPOS_PATH MUST NOT BE A SYMLINK!!!
repos_path: "/home/git/repositories"
# File used as authorized_keys for gitlab user
auth_file: "/home/git/.ssh/authorized_keys"
# Redis settings used for pushing commit notices to gitlab
redis:
bin: /usr/bin/redis-cli
host: 127.0.0.1
port: 6379
# socket: /tmp/redis.socket # Only define this if you want to use sockets
namespace: resque:gitlab
|