Created
February 18, 2026 10:15
-
-
Save masterbpro/faf44bf72f12cfc5c54bfc45132c577d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| external_url 'https://gitlab.onestatus.org' | |
| gitlab_rails['gitlab_ssh_host'] = 'gitlab.onestatus.org' | |
| gitlab_rails['gitlab_shell_ssh_port'] = 2224 | |
| gitlab_rails['time_zone'] = "Europe/Moscow" | |
| gitlab_rails['gravatar_enabled'] = false | |
| postgresql['enable'] = false | |
| gitlab_rails['db_adapter'] = "postgresql" | |
| gitlab_rails['db_encoding'] = "unicode" | |
| gitlab_rails['db_host'] = "postgres" | |
| gitlab_rails['db_port'] = 5432 | |
| gitlab_rails['db_database'] = "gitlab" | |
| gitlab_rails['db_username'] = "gitlab" | |
| gitlab_rails['db_password'] = "gitlab" | |
| gitlab_rails['smtp_enable'] = false | |
| letsencrypt['enabled'] = false | |
| nginx['listen_port'] = 80 | |
| nginx['listen_https'] = false | |
| nginx['redirect_http_to_https'] = false | |
| registry['enable'] = false | |
| gitlab_rails['registry_enabled'] = false | |
| gitlab_rails['omniauth_providers'] = [ | |
| { | |
| name: "openid_connect", | |
| label: "id.askez.io", | |
| args: { | |
| name: "openid_connect", | |
| scope: ["openid", "profile", "email"], | |
| response_type: "code", | |
| issuer: "https://id.askez.io", | |
| discovery: true, | |
| uid_field: "preferred_username", | |
| client_auth_method: "query", | |
| client_options: { | |
| identifier: "1234567890", | |
| secret: "0987654321", | |
| redirect_uri: "https://gitlab.onestatus.org/users/auth/openid_connect/callback" | |
| } | |
| } | |
| } | |
| ] | |
| gitlab_rails['signup_enabled'] = false | |
| gitlab_rails['omniauth_enabled'] = true | |
| gitlab_rails['omniauth_allow_single_sign_on'] = ['openid_connect'] | |
| gitlab_rails['omniauth_block_auto_created_users'] = false | |
| gitlab_rails['omniauth_auto_link_user'] = ['openid_connect'] | |
| gitlab_rails['omniauth_auto_sign_in_with_provider'] = nil |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment