2018-08-15 09:19:31 +02:00
# Configuring the Ansible playbook
2018-08-08 09:07:02 +02:00
2019-03-10 16:02:17 +01:00
To configure the playbook, you need to have done the following things:
2018-08-08 09:07:02 +02:00
2019-03-10 16:02:17 +01:00
- have a server where Matrix services will run
- [configured your DNS records ](configuring-dns.md )
- [retrieved the playbook's source code ](getting-the-playbook.md ) to your computer
You can then follow these steps inside the playbook directory:
2018-08-08 09:07:02 +02:00
- create a directory to hold your configuration (`mkdir inventory/host_vars/matrix.< your-domain > `)
- copy the sample configuration file (`cp examples/host-vars.yml inventory/host_vars/matrix.< your-domain > /vars.yml`)
2019-01-12 16:53:00 +01:00
- edit the configuration file (`inventory/host_vars/matrix.< your-domain > /vars.yml`) to your liking. You may also take a look at the various `roles/ROLE_NAME_HERE/defaults/main.yml` files and see if there's something you'd like to copy over and override in your `vars.yml` configuration file.
2018-08-08 09:07:02 +02:00
- copy the sample inventory hosts file (`cp examples/hosts inventory/hosts`)
- edit the inventory hosts file (`inventory/hosts`) to your liking
For a basic Matrix installation, that's all you need.
For a more custom setup, see the [Other configuration options ](#other-configuration-options ) below.
When you're done with all the configuration you'd like to do, continue with [Installing ](installing.md ).
## Other configuration options
2019-04-19 08:54:18 +02:00
### Additional useful services
2018-11-01 17:21:38 +01:00
2019-04-19 08:54:18 +02:00
- [Setting up the Dimension Integration Manager ](configuring-playbook-dimension.md ) (optional, but recommended; after [installing ](installing.md ))
2018-10-25 17:02:04 +02:00
2019-04-19 08:54:18 +02:00
### Core service adjustments
2018-08-14 13:11:41 +02:00
2019-08-22 08:49:22 +02:00
- [Configuring Synapse ](configuring-playbook-synapse.md ) (optional)
2018-08-08 09:10:16 +02:00
- [Storing Matrix media files on Amazon S3 ](configuring-playbook-s3.md ) (optional)
2018-08-08 09:07:02 +02:00
- [Using an external PostgreSQL server ](configuring-playbook-external-postgres.md ) (optional)
2018-08-15 09:23:22 +02:00
- [Adjusting mxisd Identity Server configuration ](configuring-playbook-mxisd.md ) (optional)
2018-12-23 10:00:12 +01:00
- [Adjusting SSL certificate retrieval ](configuring-playbook-ssl-certificates.md ) (optional, advanced)
2019-03-12 21:27:18 +01:00
- [Serving your base domain using this playbook's nginx server ](configuring-playbook-base-domain-serving.md ) (optional)
2019-04-17 13:42:09 +02:00
- [Configure Ngnix (optional, advanced) ](configuring-playbook-ngnix.md ) (optional, advanced)
2018-11-26 06:23:42 +01:00
- [Using your own webserver, instead of this playbook's nginx proxy ](configuring-playbook-own-webserver.md ) (optional, advanced)
2018-08-17 08:02:12 +02:00
2019-04-19 08:57:41 +02:00
- [Adjusting TURN server configuration ](configuring-playbook-turn.md ) (optional, advanced)
2019-04-19 08:54:18 +02:00
### Server connectivity
- [Enabling Telemetry for your Matrix server ](configuring-playbook-telemetry.md ) (optional)
- [Controlling Matrix federation ](configuring-playbook-federation.md ) (optional)
- [Adjusting email-sending settings ](configuring-playbook-email.md ) (optional)
### Authentication and user-related
2018-11-26 06:23:42 +01:00
- [Setting up the REST authentication password provider module ](configuring-playbook-rest-auth.md ) (optional, advanced)
2018-08-20 16:11:55 +02:00
2018-11-26 06:23:42 +01:00
- [Setting up the Shared Secret Auth password provider module ](configuring-playbook-shared-secret-auth.md ) (optional, advanced)
2018-08-21 12:34:34 +02:00
2018-11-28 10:21:03 +01:00
- [Setting up the LDAP password provider module ](configuring-playbook-ldap-auth.md ) (optional, advanced)
2018-11-26 06:23:42 +01:00
- [Setting up Matrix Corporal ](configuring-playbook-matrix-corporal.md ) (optional, advanced)
2018-09-07 22:35:04 +02:00
2019-04-19 08:54:18 +02:00
### Bridging other networks
2018-10-26 18:44:58 +02:00
- [Setting up Mautrix Telegram bridging ](configuring-playbook-bridge-mautrix-telegram.md ) (optional)
2018-11-04 00:30:17 +01:00
- [Setting up Mautrix Whatsapp bridging ](configuring-playbook-bridge-mautrix-whatsapp.md ) (optional)
2019-01-31 06:37:23 +01:00
2019-05-08 16:33:09 +02:00
- [Setting up Mautrix Facebook bridging ](configuring-playbook-bridge-mautrix-facebook.md ) (optional)
2019-08-21 06:24:58 +02:00
- [Setting up Mautrix Hangouts bridging ](configuring-playbook-bridge-mautrix-hangouts.md ) (optional)
2019-01-31 06:37:23 +01:00
- [Setting up Appservice IRC bridging ](configuring-playbook-bridge-appservice-irc.md ) (optional)
2019-03-03 18:22:52 +01:00
- [Setting up Appservice Discord bridging ](configuring-playbook-bridge-appservice-discord.md ) (optional)
2019-06-10 16:52:48 +02:00
- [Setting up Appservice Slack bridging ](configuring-playbook-bridge-appservice-slack.md ) (optional)
2019-08-21 06:34:20 +02:00
2019-08-05 12:06:49 +02:00
- [Setting up Email2Matrix ](configuring-playbook-email2matrix.md ) (optional)