From d10237231b857a679b3b44c68a60e1963ede2501 Mon Sep 17 00:00:00 2001 From: Adam Coldrick Date: Fri, 9 May 2014 10:52:06 +0000 Subject: Add a configure extension and relevant files for installing GitLab --- .../gitlab-ci/config/application.yml | 43 ++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 gitlab-server/usr/share/gitlab-install/gitlab-ci/config/application.yml (limited to 'gitlab-server/usr/share/gitlab-install/gitlab-ci/config/application.yml') diff --git a/gitlab-server/usr/share/gitlab-install/gitlab-ci/config/application.yml b/gitlab-server/usr/share/gitlab-install/gitlab-ci/config/application.yml new file mode 100644 index 00000000..6eb5eb19 --- /dev/null +++ b/gitlab-server/usr/share/gitlab-install/gitlab-ci/config/application.yml @@ -0,0 +1,43 @@ +defaults: &defaults + gitlab_server_urls: + # Replace with your gitlab server url + - 'http://##GITLAB_HOSTNAME##/' + + ## Gitlab CI settings + gitlab_ci: + ## Web server settings + host: ##GITLAB_HOSTNAME## + port: ##CI_PORT## + https: false + + ## Email settings + # Email address used in the "From" field in mails sent by GitLab-CI + email_from: gitlab-ci@localhost + + # Email address of your support contact (default: same as email_from) + support_email: support@localhost + + # Default project notifications settings: + # + # Send emails only on broken builds (default: true) + # all_broken_builds: true + # + # Add committer to recipients list (default: false) + # add_committer: true + + gravatar: + enabled: true + plain_url: "http://www.gravatar.com/avatar/%{hash}?s=%{size}&d=mm" + ssl_url: "https://secure.gravatar.com/avatar/%{hash}?s=%{size}&d=mm" + + +development: + <<: *defaults + +test: + <<: *defaults + gitlab_server_urls: + - 'http://demo.gitlab.com/' + +production: + <<: *defaults -- cgit v1.2.1