1
1
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_gitea.git synced 2024-08-16 11:39:50 +02:00

Fix DISABLE_WEBHOOKS value in the template

This commit is contained in:
Stefan Ubbink 2023-02-08 20:26:21 +01:00
parent f395277969
commit 76ac0a3453

View file

@ -154,7 +154,7 @@ DATADIR = {{ gitea_home }}/indexers/issues.queue
INSTALL_LOCK = true
SECRET_KEY = {{ gitea_secret_key }}
DISABLE_GIT_HOOKS = {{ gitea_disable_git_hooks | ternary('true', 'false') }}
DISABLE_WEBHOOKS = { gitea_disable_webhooks | ternary('true', 'false') }
DISABLE_WEBHOOKS = {{ gitea_disable_webhooks | ternary('true', 'false') }}
INTERNAL_TOKEN = {{ gitea_internal_token }}
PASSWORD_CHECK_PWN = {{ gitea_password_check_pwn | ternary('true', 'false') }}
{{ gitea_security_extra_config }}