-
- Downloads
There was an error fetching the commit references. Please try again later.
Allow raw `tls_options` to be passed in LDAP configuration
We've previously exposed ca_file and ssl_version but there are many possible options that can be used inside tls_options. Instead of exposing individual ones, simply expose the entire hash so it can be passed in and we won't have to add things in the future.
Showing
- Gemfile 1 addition, 1 deletionGemfile
- Gemfile.lock 2 additions, 2 deletionsGemfile.lock
- changelogs/unreleased/add_ldap_tls_options.yml 5 additions, 0 deletionschangelogs/unreleased/add_ldap_tls_options.yml
- config/gitlab.yml.example 50 additions, 15 deletionsconfig/gitlab.yml.example
- config/initializers/1_settings.rb 18 additions, 0 deletionsconfig/initializers/1_settings.rb
- doc/administration/auth/ldap.md 48 additions, 8 deletionsdoc/administration/auth/ldap.md
- lib/gitlab/auth/ldap/config.rb 42 additions, 15 deletionslib/gitlab/auth/ldap/config.rb
- spec/lib/gitlab/auth/ldap/config_spec.rb 141 additions, 12 deletionsspec/lib/gitlab/auth/ldap/config_spec.rb
Loading
| Loading
| @@ -68,7 +68,7 @@ gem 'gpgme', '~> 2.0.18' |
# LDAP Auth | ||
# GitLab fork with several improvements to original library. For full list of changes | ||
# see https://github.com/intridea/omniauth-ldap/compare/master...gitlabhq:master | ||
gem 'gitlab_omniauth-ldap', '~> 2.0.4', require: 'omniauth-ldap' | ||
gem 'gitlab_omniauth-ldap', '~> 2.1.1', require: 'omniauth-ldap' | ||
gem 'net-ldap' | ||
# API | ||
Loading
| Loading
|
Please register or sign in to comment