|
| 1 | +# External URL should be your Docker instance. |
| 2 | +# By default, this example is the "standard" boot2docker IP. |
| 3 | +# Always use port 80 here to force the internal nginx to bind port 80, |
| 4 | +# even if you intend to use another port in Docker. |
| 5 | +external_url "http://192.168.59.103/" |
| 6 | + |
| 7 | +# Some configuration of GitLab |
| 8 | +# You can find more at https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/README.md#configuration |
| 9 | +gitlab_rails['gitlab_email_from'] = '[email protected]' |
| 10 | +gitlab_rails['gitlab_support_email'] = '[email protected]' |
| 11 | +gitlab_rails['time_zone'] = 'Europe/Paris' |
| 12 | + |
| 13 | +# SMTP settings |
| 14 | +# You must use an external server, the Docker container does not install an SMTP server |
| 15 | +gitlab_rails['smtp_enable'] = true |
| 16 | +gitlab_rails['smtp_address'] = "smtp.example.com" |
| 17 | +gitlab_rails['smtp_port'] = 587 |
| 18 | +gitlab_rails['smtp_user_name'] = "user" |
| 19 | +gitlab_rails['smtp_password'] = "password" |
| 20 | +gitlab_rails['smtp_domain'] = "example.com" |
| 21 | +gitlab_rails['smtp_authentication'] = "plain" |
| 22 | +gitlab_rails['smtp_enable_starttls_auto'] = true |
| 23 | + |
| 24 | +# Enable LDAP authentication |
| 25 | +# gitlab_rails['ldap_enabled'] = true |
| 26 | +# gitlab_rails['ldap_host'] = 'ldap.example.com' |
| 27 | +# gitlab_rails['ldap_port'] = 389 |
| 28 | +# gitlab_rails['ldap_method'] = 'plain' # 'ssl' or 'plain' |
| 29 | +# gitlab_rails['ldap_allow_username_or_email_login'] = false |
| 30 | +# gitlab_rails['ldap_uid'] = 'uid' |
| 31 | +# gitlab_rails['ldap_base'] = 'ou=users,dc=example,dc=com' |
0 commit comments