1
0
mirror of https://github.com/spantaleev/matrix-docker-ansible-deploy.git synced 2024-12-12 08:43:55 +02:00

Fix example policy provider configuration for matrix-corporal

Fixes the example, to add the missing required configuration key
for the HTTP policy provider.

Related to #477 (Github Issue).
This commit is contained in:
Slavi Pantaleev 2020-04-29 17:22:18 +03:00
parent da90988f0c
commit 37b80d0c75

View File

@ -26,7 +26,8 @@ matrix_corporal_policy_provider_config: |
"Uri": "https://intranet.example.com/matrix/policy",
"AuthorizationBearerToken": "SOME_SECRET",
"CachePath": "/var/cache/matrix-corporal/last-policy.json",
"ReloadIntervalSeconds": 1800
"ReloadIntervalSeconds": 1800,
"TimeoutMilliseconds": 300
}
# If you also want to enable Matrix Corporal's HTTP API..