Commit dd3e7ff0 authored by Michael Kozono's avatar Michael Kozono

Default LDAP config verify_certificates to true

parent cbaa015c
...@@ -273,9 +273,8 @@ production: &base ...@@ -273,9 +273,8 @@ production: &base
encryption: 'plain' encryption: 'plain'
# Enables SSL certificate verification if encryption method is # Enables SSL certificate verification if encryption method is
# "start_tls" or "simple_tls". (Defaults to false for backward- # "start_tls" or "simple_tls". Defaults to true.
# compatibility) verify_certificates: true
verify_certificates: false
# Specifies the path to a file containing a PEM-format CA certificate, # Specifies the path to a file containing a PEM-format CA certificate,
# e.g. if you need to use an internal CA. # e.g. if you need to use an internal CA.
......
...@@ -155,18 +155,11 @@ if Settings.ldap['enabled'] || Rails.env.test? ...@@ -155,18 +155,11 @@ if Settings.ldap['enabled'] || Rails.env.test?
server['encryption'] = 'simple_tls' if server['encryption'] == 'ssl' server['encryption'] = 'simple_tls' if server['encryption'] == 'ssl'
server['encryption'] = 'start_tls' if server['encryption'] == 'tls' server['encryption'] = 'start_tls' if server['encryption'] == 'tls'
# Certificates are not verified for backwards compatibility. # Certificate verification was added in 9.4.2, and defaulted to false for
# This default should be flipped to true in 9.5. # backwards-compatibility.
if server['verify_certificates'].nil? #
server['verify_certificates'] = false # Since GitLab 10.0, verify_certificates defaults to true for security.
server['verify_certificates'] = true if server['verify_certificates'].nil?
message = <<-MSG.strip_heredoc
LDAP SSL certificate verification is disabled for backwards-compatibility.
Please add the "verify_certificates" option to gitlab.yml for each LDAP
server. Certificate verification will be enabled by default in GitLab 9.5.
MSG
Rails.logger.warn(message)
end
Settings.ldap['servers'][key] = server Settings.ldap['servers'][key] = server
end end
......
...@@ -87,9 +87,12 @@ main: # 'main' is the GitLab 'provider ID' of this LDAP server ...@@ -87,9 +87,12 @@ main: # 'main' is the GitLab 'provider ID' of this LDAP server
encryption: 'plain' encryption: 'plain'
# Enables SSL certificate verification if encryption method is # Enables SSL certificate verification if encryption method is
# "start_tls" or "simple_tls". (Defaults to false for backward- # "start_tls" or "simple_tls". Defaults to true since GitLab 10.0 for
# compatibility) # security. This may break installations upon upgrade to 10.0, that did
verify_certificates: false # not know their LDAP SSL certificates were not setup properly. For
# example, when using self-signed certificates, the ca_file path may
# need to be specified.
verify_certificates: true
# Specifies the path to a file containing a PEM-format CA certificate, # Specifies the path to a file containing a PEM-format CA certificate,
# e.g. if you need to use an internal CA. # e.g. if you need to use an internal CA.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment