nixos/matrix-synapse: correct trusted_third_party_id_servers default
the servers are equivalent and synchronized, but Riot defaults to use vector.im Source: https://github.com/matrix-org/synapse/blob/v0.99.3/docs/sample_config.yaml#L701
This commit is contained in:
parent
5e7e5a2062
commit
34aa25b8dc
@ -554,7 +554,10 @@ in {
|
|||||||
};
|
};
|
||||||
trusted_third_party_id_servers = mkOption {
|
trusted_third_party_id_servers = mkOption {
|
||||||
type = types.listOf types.str;
|
type = types.listOf types.str;
|
||||||
default = ["matrix.org"];
|
default = [
|
||||||
|
"matrix.org"
|
||||||
|
"vector.im"
|
||||||
|
];
|
||||||
description = ''
|
description = ''
|
||||||
The list of identity servers trusted to verify third party identifiers by this server.
|
The list of identity servers trusted to verify third party identifiers by this server.
|
||||||
'';
|
'';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user