about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorPascal Bach <pascal.bach@nextrem.ch>2022-01-25 22:03:34 +0100
committerGitHub <noreply@github.com>2022-01-25 22:03:34 +0100
commitc0ad24ee1de4cb454c0b5abf340acdc5847f88a5 (patch)
tree23a86dd92d9d128948d7d95b0037d89f14daec90 /nixos
parenta1759abf426a43d9b5faeb95df51aa301079a6ef (diff)
parent88362d1a35ba4ac92e9bf728b68c32f14468daa3 (diff)
Merge pull request #155703 from dali99/synapse-webclient
nixos/matrix-synapse: Remove webclient from default listener
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/misc/matrix-synapse.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/misc/matrix-synapse.nix b/nixos/modules/services/misc/matrix-synapse.nix
index 404163d2de6c5..bee4d7667c8eb 100644
--- a/nixos/modules/services/misc/matrix-synapse.nix
+++ b/nixos/modules/services/misc/matrix-synapse.nix
@@ -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; }
           ];
         }];