mirror of
https://github.com/YunoHost-Apps/gitlab_ynh.git
synced 2024-09-03 18:36:35 +02:00
config file forgotten
This commit is contained in:
parent
329fbfdb26
commit
88bb4ab8bb
1 changed files with 21 additions and 0 deletions
21
conf/gitlab.rb
Normal file
21
conf/gitlab.rb
Normal file
|
@ -0,0 +1,21 @@
|
|||
external_url 'GENERATED_EXTERNAL_URL'
|
||||
|
||||
gitlab_rails['ldap_enabled'] = true
|
||||
gitlab_rails['ldap_servers'] = YAML.load <<-'EOS' # remember to close this block with 'EOS' below
|
||||
main: # 'main' is the GitLab 'provider ID' of this LDAP server
|
||||
label: 'LDAP'
|
||||
host: 'localhost'
|
||||
port: 389
|
||||
uid: 'uid'
|
||||
method: 'plain' # "tls" or "ssl" or "plain"
|
||||
bind_dn: ''
|
||||
password: ''
|
||||
active_directory: false
|
||||
allow_username_or_email_login: false
|
||||
block_auto_created_users: false
|
||||
base: 'ou=users,dc=yunohost,dc=org'
|
||||
user_filter: ''
|
||||
EOS
|
||||
|
||||
nginx['listen_port'] = PORT
|
||||
nginx['listen_https'] = false
|
Loading…
Add table
Reference in a new issue