Add more configured options for riot-web and homeserver.
This commit is contained in:
parent
d3c9be2cdf
commit
3cb3f17a90
@ -26,3 +26,15 @@ matrix_coturn_turn_static_auth_secret: ""
|
|||||||
# You can put any string here, but generating a strong one is preferred (e.g. `pwgen -s 64 1`).
|
# You can put any string here, but generating a strong one is preferred (e.g. `pwgen -s 64 1`).
|
||||||
matrix_synapse_macaroon_secret_key: ""
|
matrix_synapse_macaroon_secret_key: ""
|
||||||
|
|
||||||
|
# Set autojoin room(s)
|
||||||
|
# Users who register on this homeserver will automatically be joined to these rooms
|
||||||
|
matrix_autojoin_rooms: ['#room:server.tld']
|
||||||
|
|
||||||
|
# Enable registrations, disabled by default.
|
||||||
|
matrix_enable_reg: true
|
||||||
|
|
||||||
|
# Disable Riot welcome bot, default enabled
|
||||||
|
riot_welcome_bot: false
|
||||||
|
|
||||||
|
# Riot public room directory server
|
||||||
|
riot_roomdir_servers: ['server.tld']
|
||||||
|
@ -10,10 +10,24 @@
|
|||||||
"integrations_jitsi_widget_url": "{{ matrix_riot_web_integrations_jitsi_widget_url }}",
|
"integrations_jitsi_widget_url": "{{ matrix_riot_web_integrations_jitsi_widget_url }}",
|
||||||
"bug_report_endpoint_url": "https://riot.im/bugreports/submit",
|
"bug_report_endpoint_url": "https://riot.im/bugreports/submit",
|
||||||
"enableLabs": true,
|
"enableLabs": true,
|
||||||
|
{% if riot_roomdir_servers is defined %}
|
||||||
|
{% for server in riot_roomdir_servers %}
|
||||||
|
"roomDirectory": {
|
||||||
|
"servers": [
|
||||||
|
"{{ server }}"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{% endfor %}
|
||||||
|
{% else %}
|
||||||
"roomDirectory": {
|
"roomDirectory": {
|
||||||
"servers": [
|
"servers": [
|
||||||
"matrix.org"
|
"matrix.org"
|
||||||
]
|
]
|
||||||
|
{% endif %}
|
||||||
|
{% if riot_welcome_bot|default(true)|bool %}
|
||||||
},
|
},
|
||||||
"welcomeUserId": "@riot-bot:matrix.org"
|
"welcomeUserId": "@riot-bot:matrix.org"
|
||||||
|
{% else %}
|
||||||
|
}
|
||||||
|
{% endif %}
|
||||||
}
|
}
|
||||||
|
@ -432,7 +432,11 @@ turn_allow_guests: False
|
|||||||
## Registration ##
|
## Registration ##
|
||||||
|
|
||||||
# Enable registration for new users.
|
# Enable registration for new users.
|
||||||
|
{% if matrix_enable_reg|default(false)|bool %}
|
||||||
|
enable_registration: True
|
||||||
|
{% else %}
|
||||||
enable_registration: False
|
enable_registration: False
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
# The user must provide all of the below types of 3PID when registering.
|
# The user must provide all of the below types of 3PID when registering.
|
||||||
#
|
#
|
||||||
@ -476,9 +480,16 @@ trusted_third_party_id_servers:
|
|||||||
|
|
||||||
# Users who register on this homeserver will automatically be joined
|
# Users who register on this homeserver will automatically be joined
|
||||||
# to these rooms
|
# to these rooms
|
||||||
|
{% if matrix_autojoin_rooms is defined %}
|
||||||
|
{% for room in matrix_autojoin_rooms %}
|
||||||
|
auto_join_rooms:
|
||||||
|
- "{{ room }}"
|
||||||
|
{% endfor %}
|
||||||
|
{% else %}
|
||||||
#auto_join_rooms:
|
#auto_join_rooms:
|
||||||
# - "#example:example.com"
|
# - "#example:example.com"
|
||||||
|
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
## Metrics ###
|
## Metrics ###
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user