summaryrefslogtreecommitdiff
path: root/config.yml.example
diff options
context:
space:
mode:
authorAkzhan <akzhan.abdulin@gmail.com>2013-03-23 16:14:10 +0400
committerAkzhan <akzhan.abdulin@gmail.com>2013-03-23 16:14:10 +0400
commitacdeb0bf1f7660031183e5fea785d6d665013284 (patch)
treecf5bbd1c02107d2e38981daa312bc267cf780ca5 /config.yml.example
parent601450c30d66a17b3b445f0ca7367eae458efcdd (diff)
downloadgitlab-shell-acdeb0bf1f7660031183e5fea785d6d665013284.tar.gz
http_settings configuration option added.
Now it supports: * self_signed_cert option to allow self-signed certificates over https protocol. * user and password options to pass though http auth.
Diffstat (limited to 'config.yml.example')
-rw-r--r--config.yml.example7
1 files changed, 6 insertions, 1 deletions
diff --git a/config.yml.example b/config.yml.example
index c4fb088..6b0dbeb 100644
--- a/config.yml.example
+++ b/config.yml.example
@@ -1,9 +1,14 @@
# GitLab user. git by default
user: git
-# Url to gitlab instance. Used for api calls
+# 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: "/home/git/repositories"