nixos/synapse: update listener settings

The resource type health is currently missing, but should be available
according to https://matrix-org.github.io/synapse/latest/usage/configuration/config_documentation.html#listeners
This commit is contained in:
Sophie Tauchert 2023-07-06 22:28:15 +02:00
parent f15212aad8
commit b7c41da8d6
No known key found for this signature in database
GPG Key ID: 52701DE5F5F51125

View File

@ -227,6 +227,7 @@ in {
"client"
"consent"
"federation"
"health"
"keys"
"media"
"metrics"
@ -242,9 +243,10 @@ in {
];
};
compress = mkOption {
default = false;
type = types.bool;
description = lib.mdDoc ''
Should synapse compress HTTP responses to clients that support it?
Whether synapse should compress HTTP responses to clients that support it.
This should be disabled if running synapse behind a load balancer
that can do automatic compression.
'';