nixos/matrix-synapse service: url_preview_url_blacklist fix (#40027)

Moved list of ip ranges to url_preview_ip_range_blacklist defaults.
Fixes #40017
wip/yesman
Tristan Helmich 6 years ago committed by Joachim F
parent 7a39cb90a1
commit 560e91f1a7
  1. 18
      nixos/modules/services/misc/matrix-synapse.nix

@ -395,7 +395,14 @@ in {
};
url_preview_ip_range_blacklist = mkOption {
type = types.listOf types.str;
default = [];
default = [
"127.0.0.0/8"
"10.0.0.0/8"
"172.16.0.0/12"
"192.168.0.0/16"
"100.64.0.0/10"
"169.254.0.0/16"
];
description = ''
List of IP address CIDR ranges that the URL preview spider is denied
from accessing.
@ -412,14 +419,7 @@ in {
};
url_preview_url_blacklist = mkOption {
type = types.listOf types.str;
default = [
"127.0.0.0/8"
"10.0.0.0/8"
"172.16.0.0/12"
"192.168.0.0/16"
"100.64.0.0/10"
"169.254.0.0/16"
];
default = [];
description = ''
Optional list of URL matches that the URL preview spider is
denied from accessing.

Loading…
Cancel
Save