1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/dendrite_ynh.git synced 2024-09-03 18:25:58 +02:00

add __FOOBAR__ in config

This commit is contained in:
Gredin67 2023-07-31 15:47:25 +02:00 committed by GitHub
parent deea77a792
commit 7685f190c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View file

@ -81,7 +81,7 @@ global:
# Disables federation. Dendrite will not be able to communicate with other servers # Disables federation. Dendrite will not be able to communicate with other servers
# in the Matrix federation and the federation API will not be exposed. # in the Matrix federation and the federation API will not be exposed.
disable_federation: false disable_federation: __DISABLE_FEDERATION__
# Configures the handling of presence events. Inbound controls whether we receive # Configures the handling of presence events. Inbound controls whether we receive
# presence events from other servers, outbound controls whether we send presence # presence events from other servers, outbound controls whether we send presence
@ -164,16 +164,16 @@ client_api:
# Prevents new guest accounts from being created. Guest registration is also # Prevents new guest accounts from being created. Guest registration is also
# disabled implicitly by setting 'registration_disabled' above. # disabled implicitly by setting 'registration_disabled' above.
guests_disabled: true guests_disabled: __GUESTS_DISABLED__
# If set, allows registration by anyone who knows the shared secret, regardless # If set, allows registration by anyone who knows the shared secret, regardless
# of whether registration is otherwise disabled. # of whether registration is otherwise disabled.
registration_shared_secret: "" registration_shared_secret: __REGISTRATION_SHARED_SECRET__
# Whether to require reCAPTCHA for registration. If you have enabled registration # Whether to require reCAPTCHA for registration. If you have enabled registration
# then this is HIGHLY RECOMMENDED to reduce the risk of your homeserver being used # then this is HIGHLY RECOMMENDED to reduce the risk of your homeserver being used
# for coordinated spam attacks. # for coordinated spam attacks.
enable_registration_captcha: false enable_registration_captcha: __ENABLE_REGISTRATION_CAPTCHA
# Settings for ReCAPTCHA. # Settings for ReCAPTCHA.
recaptcha_public_key: "" recaptcha_public_key: ""