From 080b75d7e020d9dd286b16b7e63821bbf753dcaa Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Sun, 21 Jan 2024 23:38:51 +0100 Subject: [PATCH] Remove ipv6 shit --- .../server/package-configs/conduit/configuration.nix | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/nixos/server/package-configs/conduit/configuration.nix b/nixos/server/package-configs/conduit/configuration.nix index 1a0e2d5..0284c20 100644 --- a/nixos/server/package-configs/conduit/configuration.nix +++ b/nixos/server/package-configs/conduit/configuration.nix @@ -68,21 +68,11 @@ in { port = 443; ssl = true; } - { - addr = "[::]"; - port = 443; - ssl = true; - } { addr = "0.0.0.0"; port = 8448; ssl = true; } - { - addr = "[::]"; - port = 8448; - ssl = true; - } ]; locations."/_matrix/" = { @@ -126,7 +116,7 @@ in { upstreams = { "backend_conduit" = { servers = { - "[::1]:${toString config.services.matrix-conduit.settings.global.port}" = {}; + "[0.0.0.0]:${toString config.services.matrix-conduit.settings.global.port}" = {}; }; }; };