From e96aa100a402dd095813f9543a2deabb26e12ff0 Mon Sep 17 00:00:00 2001 From: Marius Alwan Meyer <22202402+Sporqist@users.noreply.github.com> Date: Tue, 8 Nov 2022 11:47:13 +0100 Subject: [PATCH] =?UTF-8?q?Unterst=C3=BCtzung=20der=20wichtigsten=20Umgebu?= =?UTF-8?q?ngsvariablen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tasks/main.yaml | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/tasks/main.yaml b/tasks/main.yaml index c2d5b57..2a3ede0 100644 --- a/tasks/main.yaml +++ b/tasks/main.yaml @@ -74,7 +74,17 @@ env: USER_UID: "{{ git_user.uid }}" USER_GID: "{{ git_user.group }}" - - - - + GITEA__APP_NAME: "{{ gitea.app_name }}" + GITEA__RUN_USER: "{{ git_user.name }}" + GITEA__server__ROOT_URL: "https://{{ system.hostname }}.{{ system.domain }}/" + GITEA__server__Domain: "{{ system.hostname }}.{{ system.domain }}" + GITEA__server__SSH_PORT: "22" + GITEA__service__DISABLE_REGISTRATION: "{{ gitea.service.disable_registration }}" + GITEA__service__REQUIRE_SIGNIN_VIEW: "{{ gitea.service.require_signin_view }}" + GITEA__service__REGISTER_EMAIL_CONFIRM: "{{ gitea.service.register_email_confirm }}" + GITEA__service__ENABLE_NOTIFY_MAIL: "{{ gitea.service.enable_notify_mail }}" + GITEA__service__DEFAULT_KEEP_EMAIL_PRIVATE: "{{ gitea.service.default_keep_email_private }}" + GITEA__service__DEFAULT_ALLOW_CREATE_ORGANIZATION: "{{ gitea.service.default_allow_create_organization }}" + GITEA__service__DEFAULT_ENABLE_TIMETRACKING: "{{ gitea.service.default_enable_timetracking }}" + GITEA__mailer__ENABLED: "{{ gitea.mailer.enabled }}" + GITEA__mailer__FROM: "git@{{ system.hostname }}.{{ system.domain }}"