|
|
|
@@ -1,5 +1,27 @@ |
|
|
|
# 2018-11-03 |
|
|
|
|
|
|
|
## Customize parts of Riot's config |
|
|
|
|
|
|
|
You can now customize some parts of Riot's `config.json`. These playbook variables, with these default values, have been added: |
|
|
|
|
|
|
|
``` |
|
|
|
matrix_riot_web_disable_custom_urls: true |
|
|
|
matrix_riot_web_disable_guests: true |
|
|
|
matrix_riot_web_integrations_ui_url: "https://scalar.vector.im/" |
|
|
|
matrix_riot_web_integrations_rest_url: "https://scalar.vector.im/api" |
|
|
|
matrix_riot_web_integrations_widgets_urls: "https://scalar.vector.im/api" |
|
|
|
matrix_riot_web_integrations_jitsi_widget_url: "https://scalar.vector.im/api/widgets/jitsi.html" |
|
|
|
``` |
|
|
|
|
|
|
|
This now allows you use a custom integrations manager like [Dimesion](https://dimension.t2bot.io). For example, if you wish to use the Dimension instance hosted at dimension.t2bot.io, you can set the following in your vars.yml file: |
|
|
|
|
|
|
|
``` |
|
|
|
matrix_riot_web_integrations_ui_url: "https://dimension.t2bot.io/riot" |
|
|
|
matrix_riot_web_integrations_rest_url: "https://dimension.t2bot.io/api/v1/scalar" |
|
|
|
matrix_riot_web_integrations_widgets_urls: "https://dimension.t2bot.io/widgets" |
|
|
|
matrix_riot_web_integrations_jitsi_widget_url: "https://dimension.t2bot.io/widgets/jitsi" |
|
|
|
``` |
|
|
|
|
|
|
|
## SSL protocols used to serve Riot and Synapse |
|
|
|
|
|
|
|
There's now a new `matrix_nginx_proxy_ssl_protocols` playbook variable, which controls the SSL protocols used to serve Riot and Synapse. Its default value is `TLSv1.1 TLSv1.2`. This playbook previously used `TLSv1 TLSv1.1 TLSv1.2` to serve Riot and Synapse. |
|
|
|
|