forked from beeper/self-host
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.yml
93 lines (74 loc) · 3.55 KB
/
vars.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
---
# The bare domain name which represents your Matrix identity.
# Matrix user ids for your server will be of the form (`@user:<matrix-domain>`).
#
# Note: this playbook does not touch the server referenced here.
# Installation happens on another server ("matrix.<matrix-domain>").
#
# If you've deployed using the wrong domain, you'll have to run the Uninstalling step,
# because you can't change the Domain after deployment.
#
# Example value: example.com
matrix_domain: <insert_domain>
# The Matrix homeserver software to install.
# See:
# - `roles/custom/matrix-base/defaults/main.yml` for valid options
# - the `docs/configuring-playbook-IMPLEMENTATION_NAME.md` documentation page, if one is available for your implementation choice
matrix_homeserver_implementation: synapse
# A secret used as a base, for generating various other secrets.
# You can put any string here, but generating a strong one is preferred (e.g. `pwgen -s 64 1`).
matrix_homeserver_generic_secret_key: '<create_secretkey>'
# Specify reverse proxy
# insert your email address
matrix_playbook_reverse_proxy_type: playbook-managed-traefik
devture_traefik_config_certificatesResolvers_acme_email: YOUR_EMAIL_ADDRESS
matrix_playbook_docker_installation_enabled: false
# Disable installing Element
matrix_client_element_enabled: false
# This is something which is provided to Let's Encrypt when retrieving SSL certificates for domains.
#
# In case SSL renewal fails at some point, you'll also get an email notification there.
#
# If you decide to use another method for managing SSL certificates (different than the default Let's Encrypt),
# you won't be required to define this variable (see `docs/configuring-playbook-ssl-certificates.md`).
#
# Example value: someone@example.com
matrix_ssl_lets_encrypt_support_email: '<insert_email>'
# A Postgres password to use for the superuser Postgres user (called `matrix` by default).
#
# The playbook creates additional Postgres users and databases (one for each enabled service)
# using this superuser account.
devture_postgres_connection_password: '<create_secretkey>'
matrix_synapse_ext_password_provider_shared_secret_auth_enabled: true
# matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret: YOUR_SHARED_SECRET_GOES_HERE
matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret: <create_secretkey>
# Discord
matrix_mautrix_discord_enabled: true
# Telegram
# You'll need to obtain API keys from https://my.telegram.org/apps and then enter the details below
# matrix_mautrix_telegram_enabled: true
# matrix_mautrix_telegram_api_id: YOUR_TELEGRAM_APP_ID
# matrix_mautrix_telegram_api_hash: YOUR_TELEGRAM_API_HASH
# WhatsApp
matrix_mautrix_whatsapp_enabled: true
matrix_synapse_configuration_extension_yaml: |
experimental_features:
msc2716_enabled: true
matrix_mautrix_whatsapp_configuration_extension_yaml:
bridge:
history_sync:
backfill: true
# Facebook Messenger
matrix_mautrix_facebook_enabled: true
# Google Chat
matrix_mautrix_googlechat_enabled: true
# Instagram
matrix_mautrix_instagram_enabled: true
# Twitter
matrix_mautrix_twitter_enabled: true
# Signal
matrix_mautrix_signal_enabled: true
# Linkedin
matrix_beeper_linkedin_enabled: true
# IRC
matrix_heisenbridge_enabled: true