Merge pull request #155703 from dali99/synapse-webclient

nixos/matrix-synapse: Remove webclient from default listener
This commit is contained in:
Pascal Bach 2022-01-25 22:03:34 +01:00 committed by GitHub
commit c0ad24ee1d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -294,7 +294,7 @@ in {
description = ''
List of resources to host on this listener.
'';
example = ["client" "webclient" "federation"];
example = ["client" "federation"];
};
compress = mkOption {
type = types.bool;
@ -319,7 +319,7 @@ in {
tls = true;
x_forwarded = false;
resources = [
{ names = ["client" "webclient"]; compress = true; }
{ names = ["client"]; compress = true; }
{ names = ["federation"]; compress = false; }
];
}];