summaryrefslogtreecommitdiff
path: root/gitlab-server/usr/share/gitlab-install/gitlab-shell/config.yml
diff options
context:
space:
mode:
authorAdam Coldrick <adam.coldrick@codethink.co.uk>2014-05-16 09:57:09 +0000
committerAdam Coldrick <adam.coldrick@codethink.co.uk>2014-05-16 09:57:09 +0000
commitbc347a438b36c60931602bf86d4156d332cb9cde (patch)
tree9f0814d4f4eaad3e536c5262861c760e19fe9966 /gitlab-server/usr/share/gitlab-install/gitlab-shell/config.yml
parent2fb6ede1ffed0b2ca4bd805c1ab558cdeea8c446 (diff)
parent04a621fae782e700197c4148efb5160dc46755ef (diff)
downloaddefinitions-bc347a438b36c60931602bf86d4156d332cb9cde.tar.gz
Merge branch 'baserock/adamcoldrick/gitlab-systems-merge'
Reviewed by: Lars Wirzenius <lars.wirzenius@codethink.co.uk>
Diffstat (limited to 'gitlab-server/usr/share/gitlab-install/gitlab-shell/config.yml')
-rw-r--r--gitlab-server/usr/share/gitlab-install/gitlab-shell/config.yml41
1 files changed, 41 insertions, 0 deletions
diff --git a/gitlab-server/usr/share/gitlab-install/gitlab-shell/config.yml b/gitlab-server/usr/share/gitlab-install/gitlab-shell/config.yml
new file mode 100644
index 00000000..fba31eb6
--- /dev/null
+++ b/gitlab-server/usr/share/gitlab-install/gitlab-shell/config.yml
@@ -0,0 +1,41 @@
+# GitLab user. git by default
+user: git
+
+# Url to gitlab instance. Used for api calls. Should end with a slash.
+gitlab_url: "http://##GITLAB_HOSTNAME##/"
+
+http_settings:
+# user: someone
+# password: somepass
+# ca_file: /etc/ssl/cert.pem
+# ca_path: /etc/pki/tls/certs
+ self_signed_cert: false
+
+# Repositories path
+# Give the canonicalized absolute pathname,
+# REPOS_PATH MUST NOT CONTAIN ANY SYMLINK!!!
+# Check twice that none of the components is a symlink, including "/home".
+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
+
+# Log file.
+# Default is gitlab-shell.log in the root directory.
+# log_file: "/home/git/gitlab-shell/gitlab-shell.log"
+
+# Log level. INFO by default
+log_level: INFO
+
+# Audit usernames.
+# Set to true to see real usernames in the logs instead of key ids, which is easier to follow, but
+# incurs an extra API call on every gitlab-shell command.
+audit_usernames: false