From 5cabc8366ed87e5cf7bb1ce53ed59908adc76380 Mon Sep 17 00:00:00 2001 From: Nick Huanca Date: Wed, 26 Feb 2014 12:04:32 -0700 Subject: [PATCH 1/2] added verify false on gitlab_ci integrations For those of us running self-signed in gitlab-ci it generates 500s SSL_verify errors if you don't have this. --- app/models/project_services/gitlab_ci_service.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/project_services/gitlab_ci_service.rb b/app/models/project_services/gitlab_ci_service.rb index 7f5380a455..8d12500661 100644 --- a/app/models/project_services/gitlab_ci_service.rb +++ b/app/models/project_services/gitlab_ci_service.rb @@ -36,7 +36,7 @@ class GitlabCiService < Service end def commit_status sha - response = HTTParty.get(commit_status_path(sha)) + response = HTTParty.get(commit_status_path(sha), verify: false) if response.code == 200 and response["status"] response["status"] From 72b2a6b2f207995344b1a377e0bafacb62e21bf7 Mon Sep 17 00:00:00 2001 From: wirehack7 Date: Sun, 2 Mar 2014 23:57:21 +0100 Subject: [PATCH 2/2] Update installation.md Fixed the MySQL documentation link. --- doc/install/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/install/installation.md b/doc/install/installation.md index d6e0a8a001..aa0f48545a 100644 --- a/doc/install/installation.md +++ b/doc/install/installation.md @@ -144,7 +144,7 @@ GitLab Shell is an ssh access and repository management software developed speci # 5. Database -We recommend using a PostgreSQL database. For MySQL check [MySQL setup guide](doc/install/database_mysql.md). +We recommend using a PostgreSQL database. For MySQL check [MySQL setup guide](database_mysql.md). # Install the database packages sudo apt-get install -y postgresql-9.1 postgresql-client libpq-dev