Unterstützung der wichtigsten Umgebungsvariablen

This commit is contained in:
Marius Alwan Meyer 2022-11-08 11:47:13 +01:00
parent 9dc7ae14e8
commit e96aa100a4

View File

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