mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-02-21 22:44:11 +01:00
Compare commits
4 Commits
67df140ef4
...
aee7d2ca6c
Author | SHA1 | Date | |
---|---|---|---|
|
aee7d2ca6c | ||
|
d3b1060428 | ||
|
de34392edf | ||
|
239c7eddf8 |
@ -9,7 +9,7 @@ To upgrade services:
|
||||
- update your playbook directory and all upstream Ansible roles (defined in the `requirements.yml` file) using:
|
||||
|
||||
- either: `just update`
|
||||
- or: a combination of `git pull` and `just role` (or `make roles`)
|
||||
- or: a combination of `git pull` and `just roles` (or `make roles`)
|
||||
|
||||
- take a look at [the changelog](../CHANGELOG.md) to see if there have been any backward-incompatible changes that you need to take care of
|
||||
|
||||
|
@ -150,9 +150,9 @@ homeserver:
|
||||
# The address that this appservice can use to connect to the homeserver.
|
||||
# Local addresses without HTTPS are generally recommended when the bridge is running on the same machine,
|
||||
# but https also works if they run on different machines.
|
||||
address: http://example.localhost:8008
|
||||
address: {{ matrix_mautrix_gmessages_homeserver_address | to_json }}
|
||||
# The domain of the homeserver (also known as server_name, used for MXIDs, etc).
|
||||
domain: example.com
|
||||
domain: {{ matrix_mautrix_gmessages_homeserver_domain | to_json }}
|
||||
|
||||
# What software is the homeserver running?
|
||||
# Standard Matrix homeservers like Synapse, Dendrite and Conduit should just use "standard" here.
|
||||
|
@ -194,10 +194,15 @@ matrix_mautrix_meta_instagram_bridge_displayname_suffix: |-
|
||||
matrix_mautrix_meta_instagram_bridge_displayname_template: '{% raw %}{{or .DisplayName .Username "Unknown user"}}{% endraw %}{{ (" " ~ matrix_mautrix_meta_instagram_bridge_displayname_suffix) if matrix_mautrix_meta_instagram_bridge_displayname_suffix else "" }}'
|
||||
|
||||
# The prefix for commands. Only required in non-management rooms.
|
||||
# If set to "default", will be determined based on meta -> mode (`matrix_mautrix_meta_instagram_meta_mode`):
|
||||
# - "!ig" for instagram
|
||||
# - "!fb" for facebook
|
||||
matrix_mautrix_meta_instagram_bridge_command_prefix: default
|
||||
matrix_mautrix_meta_instagram_bridge_command_prefix: |-
|
||||
{{
|
||||
({
|
||||
'facebook': '!fb',
|
||||
'facebook-tor': '!fb',
|
||||
'messenger': '!fb',
|
||||
'instagram': '!ig',
|
||||
})[matrix_mautrix_meta_instagram_meta_mode]
|
||||
}}
|
||||
|
||||
# Whether or not created rooms should have federation enabled.
|
||||
# If false, created portal rooms will never be federated.
|
||||
|
@ -194,10 +194,15 @@ matrix_mautrix_meta_messenger_bridge_displayname_suffix: |-
|
||||
matrix_mautrix_meta_messenger_bridge_displayname_template: '{% raw %}{{or .DisplayName .Username "Unknown user"}}{% endraw %}{{ (" " ~ matrix_mautrix_meta_messenger_bridge_displayname_suffix) if matrix_mautrix_meta_messenger_bridge_displayname_suffix else "" }}'
|
||||
|
||||
# The prefix for commands. Only required in non-management rooms.
|
||||
# If set to "default", will be determined based on meta -> mode (`matrix_mautrix_meta_messenger_meta_mode`):
|
||||
# - "!ig" for instagram
|
||||
# - "!fb" for facebook
|
||||
matrix_mautrix_meta_messenger_bridge_command_prefix: default
|
||||
matrix_mautrix_meta_messenger_bridge_command_prefix: |-
|
||||
{{
|
||||
({
|
||||
'facebook': '!fb',
|
||||
'facebook-tor': '!fb',
|
||||
'messenger': '!fb',
|
||||
'instagram': '!ig',
|
||||
})[matrix_mautrix_meta_messenger_meta_mode]
|
||||
}}
|
||||
|
||||
# Whether or not created rooms should have federation enabled.
|
||||
# If false, created portal rooms will never be federated.
|
||||
|
Loading…
x
Reference in New Issue
Block a user