mirror of
https://github.com/roles-ansible/ansible_role_gitea.git
synced 2024-08-16 11:39:50 +02:00
Merge pull request #93 from TigerP/fix_template
Fix DISABLE_WEBHOOKS value in the template
This commit is contained in:
commit
aaf555101c
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ DATADIR = {{ gitea_home }}/indexers/issues.queue
|
||||||
INSTALL_LOCK = true
|
INSTALL_LOCK = true
|
||||||
SECRET_KEY = {{ gitea_secret_key }}
|
SECRET_KEY = {{ gitea_secret_key }}
|
||||||
DISABLE_GIT_HOOKS = {{ gitea_disable_git_hooks | ternary('true', 'false') }}
|
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 }}
|
INTERNAL_TOKEN = {{ gitea_internal_token }}
|
||||||
PASSWORD_CHECK_PWN = {{ gitea_password_check_pwn | ternary('true', 'false') }}
|
PASSWORD_CHECK_PWN = {{ gitea_password_check_pwn | ternary('true', 'false') }}
|
||||||
{{ gitea_security_extra_config }}
|
{{ gitea_security_extra_config }}
|
||||||
|
|
Loading…
Reference in a new issue