mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-11 00:11:25 +00:00
58 lines
1.8 KiB
YAML
58 lines
1.8 KiB
YAML
|
---
|
||
|
gitlab_domain: src.rockylinux.org
|
||
|
gitlab_external_url: "https://{gitlab_domain}/"
|
||
|
|
||
|
# Location where all the git repositories will be stored.
|
||
|
gitlab_git_data_dir: "/var/opt/gitlab/git-data"
|
||
|
|
||
|
gitlab_backup_path: "/var/opt/gitlab/backups"
|
||
|
gitlab_edition: "gitlab-ee"
|
||
|
gitlab_redirect_http_to_https: "true"
|
||
|
gitlab_ssl_certificate: "/etc/gitlab/ssl/{{ gitlab_domain }}.crt"
|
||
|
gitlab_ssl_certificate_key: "/etc/gitlab/ssl/{{ gitlab_domain }}.key"
|
||
|
|
||
|
# SSL Self-signed Certificate Configuration.
|
||
|
gitlab_create_self_signed_cert: "true"
|
||
|
gitlab_self_signed_cert_subj: "/C=US/ST=Missouri/L=Saint Louis/O=IT/CN={{ gitlab_domain }}"
|
||
|
|
||
|
# LDAP Configuration for the future
|
||
|
gitlab_ldap_enabled: "false"
|
||
|
gitlab_ldap_host: "example.com"
|
||
|
gitlab_ldap_port: "389"
|
||
|
gitlab_ldap_uid: "sAMAccountName"
|
||
|
gitlab_ldap_method: "plain"
|
||
|
gitlab_ldap_bind_dn: "CN=Username,CN=Users,DC=example,DC=com"
|
||
|
gitlab_ldap_password: "password"
|
||
|
gitlab_ldap_base: "DC=example,DC=com"
|
||
|
|
||
|
gitlab_time_zone: "UTC"
|
||
|
|
||
|
# Validates Certifications when downloading Gitlab Installation repo
|
||
|
gitlab_download_validate_certs: true
|
||
|
|
||
|
# Email and SMTP configuration (For the future)
|
||
|
# Email configuration.
|
||
|
gitlab_email_enabled: "false"
|
||
|
gitlab_email_from: "gitlab@example.com"
|
||
|
gitlab_email_display_name: "Gitlab"
|
||
|
gitlab_email_reply_to: "gitlab@example.com"
|
||
|
# SMTP configuration
|
||
|
gitlab_smtp_enable: "false"
|
||
|
gitlab_smtp_address: "smtp.server"
|
||
|
gitlab_smtp_port: "465"
|
||
|
gitlab_smtp_user_name: "smtp user"
|
||
|
gitlab_smtp_password: "smtp password"
|
||
|
gitlab_smtp_domain: "example.com"
|
||
|
gitlab_smtp_authentication: "login"
|
||
|
gitlab_smtp_enable_starttls_auto: "true"
|
||
|
gitlab_smtp_tls: "false"
|
||
|
gitlab_smtp_openssl_verify_mode: "none"
|
||
|
gitlab_smtp_ca_path: "/etc/ssl/certs"
|
||
|
gitlab_smtp_ca_file: "/etc/ssl/certs/ca-certificates.crt"
|
||
|
|
||
|
# In case of reverse proxy
|
||
|
gitlab_nginx_listen_port: 8080
|
||
|
gitlab_nginx_listen_https: "false"
|
||
|
|
||
|
gitlab_default_theme: 2
|