mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-06 10:47:32 +01:00
Switch to upgraded & official matrix-appservice-irc Docker image
This commit is contained in:
parent
77b919aec6
commit
aa05df6a02
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
matrix_appservice_irc_enabled: true
|
matrix_appservice_irc_enabled: true
|
||||||
|
|
||||||
matrix_appservice_irc_docker_image: "tedomum/matrix-appservice-irc:latest"
|
matrix_appservice_irc_docker_image: "matrixdotorg/matrix-appservice-irc:release-0.14.1"
|
||||||
matrix_appservice_irc_docker_image_force_pull: "{{ matrix_appservice_irc_docker_image.endswith(':latest') }}"
|
matrix_appservice_irc_docker_image_force_pull: "{{ matrix_appservice_irc_docker_image.endswith(':latest') }}"
|
||||||
|
|
||||||
matrix_appservice_irc_base_path: "{{ matrix_base_data_path }}/appservice-irc"
|
matrix_appservice_irc_base_path: "{{ matrix_base_data_path }}/appservice-irc"
|
||||||
@ -377,11 +377,6 @@ matrix_appservice_irc_configuration_yaml: |
|
|||||||
enablePresence: {{ matrix_appservice_irc_homeserver_enablePresence|to_json }}
|
enablePresence: {{ matrix_appservice_irc_homeserver_enablePresence|to_json }}
|
||||||
|
|
||||||
ircService:
|
ircService:
|
||||||
# The nedb database URI to connect to. This is the name of the directory to
|
|
||||||
# dump .db files to. This is relative to the project directory.
|
|
||||||
# Required.
|
|
||||||
databaseUri: "nedb:///data"
|
|
||||||
|
|
||||||
# WARNING: The bridge needs to send plaintext passwords to the IRC server, it cannot
|
# WARNING: The bridge needs to send plaintext passwords to the IRC server, it cannot
|
||||||
# send a password hash. As a result, passwords (NOT hashes) are stored encrypted in
|
# send a password hash. As a result, passwords (NOT hashes) are stored encrypted in
|
||||||
# the database.
|
# the database.
|
||||||
@ -474,6 +469,15 @@ matrix_appservice_irc_configuration_yaml: |
|
|||||||
# enough for the vast majority of use cases.
|
# enough for the vast majority of use cases.
|
||||||
maxHttpSockets: 1000
|
maxHttpSockets: 1000
|
||||||
|
|
||||||
|
# Use an external database to store bridge state.
|
||||||
|
database:
|
||||||
|
# database engine (must be 'postgres' or 'nedb'). Default: nedb
|
||||||
|
engine: "nedb"
|
||||||
|
# Either a PostgreSQL connection string, or a path to the NeDB storage directory.
|
||||||
|
# For postgres, it must start with postgres://
|
||||||
|
# For NeDB, it must start with nedb://. The path is relative to the project directory.
|
||||||
|
connectionString: "nedb:///data"
|
||||||
|
|
||||||
matrix_appservice_irc_configuration_extension_yaml: |
|
matrix_appservice_irc_configuration_extension_yaml: |
|
||||||
# Your custom YAML configuration for Appservice IRC servers goes here.
|
# Your custom YAML configuration for Appservice IRC servers goes here.
|
||||||
# This configuration extends the default starting configuration (`matrix_appservice_irc_configuration_yaml`).
|
# This configuration extends the default starting configuration (`matrix_appservice_irc_configuration_yaml`).
|
||||||
|
Loading…
Reference in New Issue
Block a user