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 }}"