From 29ccedf1465b09ca8bfced3a36f6357871dae556 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Fri, 27 Sep 2024 08:35:13 +0200 Subject: [PATCH] fix(forgejo): Fix default landing page configuration Was missing underscore to be set correctly. --- roles/forgejo/templates/docker-stack.yml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/forgejo/templates/docker-stack.yml.j2 b/roles/forgejo/templates/docker-stack.yml.j2 index 4448c3b..a773598 100644 --- a/roles/forgejo/templates/docker-stack.yml.j2 +++ b/roles/forgejo/templates/docker-stack.yml.j2 @@ -24,7 +24,7 @@ services: - "FORGEJO__database__PASSWD={{ forgejo_db_password }}" - "FORGEJO__server__ROOT_URL={{ (forgejo_use_https == True) | ternary('https', 'http') }}://{{ (subdomain_alias is not undefined and not none) | ternary(subdomain_alias, stack_name) }}.{{server_domain}}" - "FORGEJO__server__SSH_DOMAIN={{ (subdomain_alias is not undefined and not none) | ternary(subdomain_alias, stack_name) }}.{{server_domain}}" - - FORGEJO__server__LANDINGPAGE=explore + - FORGEJO__server__LANDING_PAGE=explore - FORGEJO__service__DISABLE_REGISTRATION=true {% if forgejo_app_admin_username is not undefined and not None and forgejo_app_admin_password is not undefined and not None %} - FORGEJO__security__INSTALL_LOCK=true