de5f4f7a05
Update matrix-corporal dependency
2018-09-20 10:34:11 +03:00
2df4349606
Fix matrix-corporal nginx configuration trouble in certain conditions
...
If the playbook were to run with `--tags=setup-nginx-proxy`,
it wouldn't go into `setup_corporal.yml`, which meant it wouldn't
perform a bunch of `set_fact` calls which override important
nginx proxy configuration.
We run these variable overrides on each call now (tagged with `always`)
to avoid such problems in the future.
2018-09-20 09:25:00 +03:00
0d0ccde286
Add Service Discovery (/.well-known/matrix/client) support
2018-09-17 10:51:46 +03:00
38e3ffa29c
Rename variable (matrix_riot_web_default_identity_server_url -> matrix_identity_server_url)
2018-09-17 08:44:29 +03:00
4f48508014
Rename variable (matrix_nginx_riot_web_data_path -> matrix_riot_web_data_path)
2018-09-17 08:43:31 +03:00
3fed0ec594
Remove now-useless file
2018-09-17 08:18:15 +03:00
2446b4845c
Update matrix-corporal dependency
2018-09-15 11:50:02 +03:00
8bbb6f0c60
Update dependencies
2018-09-12 20:04:54 +03:00
21916c1a3c
Update matrix-corporal (1.1 -> 1.1.1)
2018-09-08 11:19:39 +03:00
620553e408
Update README
2018-09-07 23:35:04 +03:00
6ef934a416
Mautrix telegram minimum config variable requirement
2018-09-07 20:03:56 +02:00
45fb2df43f
Fix some problem with permissions
...
Fix typo
Move mautrix variable in `defaults/main.yml` exclusively
2018-09-07 20:02:46 +02:00
7b5f68c431
Add mautrix-telegram to bridge with telegram services
2018-09-07 20:02:46 +02:00
7adcdf3040
Add the ability to control event_cache_size for Synapse
...
I've found the previous 10K default value to be way too low
on a bunch of servers I'm running, so it's now up to
100K and made configurable.
2018-09-07 16:15:40 +03:00
b52d91e180
Add the ability to controll password-peppering for Synapse
...
Closes Github issue #5
2018-09-07 15:01:38 +03:00
6d6a6412fa
Add the ability to control statistics-reporting for Synapse
...
Closes Github issue #3
2018-09-07 14:49:51 +03:00
88b4434da9
Fix incorrect path
2018-09-07 13:59:29 +03:00
7310498f71
Update certbot
2018-09-06 18:23:16 +03:00
49e0d0e6db
Update dependencies
2018-09-06 18:13:06 +03:00
7428b941c8
Remove old s3fs stuff
...
We've been using Goofys for a long time instead.
2018-08-29 10:14:48 +03:00
23e4a4734b
Switch from acmetool to certbot for SSL certificate retrieval
2018-08-29 09:37:44 +03:00
d5346656e3
Use 0.16.1 for riot-web, as the image for 0.16.2 is still unavailable
2018-08-29 08:46:21 +03:00
51ac3421b5
Update matrix-corporal (1.0.1 -> 1.1)
2018-08-24 17:13:58 +03:00
314ff09846
Update dependencies
2018-08-24 10:01:25 +03:00
92e6fdd279
Update dependencies
2018-08-23 08:35:38 +03:00
861957b6f1
Add missing when statement
2018-08-23 08:35:30 +03:00
5398d80f01
Add support for matrix-corporal
2018-08-21 13:34:34 +03:00
02d5b54fa5
Add controls for influencing Matrix Synapse's rate-limiting
2018-08-20 21:25:06 +03:00
14d7d3e670
Add support for matrix-synapse-shared-secret-auth
2018-08-20 17:11:55 +03:00
f72882fe1a
Fix user registration regression
...
Regression since a302a7d748
,
which made the Matrix Client API only available on
the http port (8008) and not over the federation port (8448).
2018-08-17 12:23:25 +03:00
b0f1a1c80f
Fix nginx warning: adding already-default text/html to gzip_types
2018-08-17 10:44:34 +03:00
832a4d71c1
Default to INFO logging for matrix-synapse-rest-auth, not DEBUG
2018-08-17 09:35:52 +03:00
21a108262f
Remove some leftover debug statements
2018-08-17 09:30:41 +03:00
25becc63d5
Minor fixups for the matrix-synapse-rest-auth handling
2018-08-17 09:25:54 +03:00
ea43d46b70
Add matrix-synapse-rest-auth support
2018-08-17 09:02:17 +03:00
df79901f8b
Improve compression support
2018-08-17 08:00:38 +03:00
a302a7d748
Only run federation on 8448 and client on 80
...
This disables federation on the 80 port, as it's
not necessary. We also disable the old Angular webclient.
For the federation port (8448), we disable the client APIs
as those are not necessary. Those can even cause trouble
if one doesn't know about them and thinks that guarding the client
APIs at the 80 port is enough.
2018-08-17 07:55:58 +03:00
74093dfb15
Add mxisd Identity Server support
2018-08-15 10:46:13 +03:00
617712000e
Minor wording improvements
2018-08-15 10:19:31 +03:00
1c71cb110e
Change SSL certificate obtaining a bit
2018-08-14 14:50:10 +03:00
21da2f572b
Add email-sending support
2018-08-14 14:47:44 +03:00
cab54879d1
Update dependencies
2018-08-11 09:44:11 +03:00
084a0a0e53
Minor consistency improvement
2018-08-08 10:47:03 +03:00
700602eed3
Rename a bunch of playbook variables for better consistency
2018-08-08 09:17:18 +03:00
336785d1ed
Rename Ansible playbook tag (setup-main -> setup-all)
2018-08-08 09:03:37 +03:00
3fd6fd647f
Put all containers in their own isolated Docker network (matrix)
...
Moving away from using the default bridge network to using our own.
This isolates our services from other Docker containers running
on the default network on the same host.
The benefits are that:
- isolation is a little better - we no longer share a default
bridge network with any other containers that might be running on the host
- there are no longer hard dependencies - we do service discovery
by DNS name, and not via explicit `--link` usage during container start,
so containers can start out of order and fail without bringing down others
with them
(`matrix-nginx-proxy` can continue running, even if one of the other services dies)
In the future, when other services get introduced,
the increased resilience and simplicity will help as well.
2018-08-08 08:57:48 +03:00
b88fe971d6
Fix matrix-nginx-proxy.service dependency on riot-web, if riot-web disabled
2018-08-07 15:39:57 +03:00
cdf4eefdf9
Fix typos
2018-08-07 15:08:46 +03:00
f6950612a5
Upgrade dependencies
2018-08-02 21:26:25 +03:00
6cb14be162
Upgrade dependencies
2018-07-30 16:18:17 +03:00