Commit 2923fd3cc077cadbdce59a6cafaff3a5939fd2b8
Committed by
Athos
1 parent
16a49e0f
Exists in
master
and in
90 other branches
Settings gitlab host and email_from using our yaml
Showing
3 changed files
with
4 additions
and
3 deletions
Show diff stats
config/development/config.yaml
config/local/config.yaml
cookbooks/gitlab/templates/gitlab.yml.erb
| 1 | 1 | production: &base |
| 2 | 2 | gitlab: |
| 3 | - host: softwarepublico.dev | |
| 3 | + host: <%= node['config']['external_hostname'] %> | |
| 4 | 4 | relative_url_root: /gitlab |
| 5 | 5 | port: 80 # Set to 443 if using HTTPS |
| 6 | 6 | https: false # Set to true if using HTTPS |
| 7 | - email_from: example@example.com | |
| 7 | + email_from: <%= node['config']['from_address'] %> | |
| 8 | 8 | default_projects_limit: 10 |
| 9 | 9 | default_projects_features: |
| 10 | 10 | issues: true | ... | ... |