Remove ipv6 shit

This commit is contained in:
Lillian Violet 2024-01-21 23:38:51 +01:00
parent 52ce43e9a5
commit 080b75d7e0

View file

@ -68,21 +68,11 @@ in {
port = 443; port = 443;
ssl = true; ssl = true;
} }
{
addr = "[::]";
port = 443;
ssl = true;
}
{ {
addr = "0.0.0.0"; addr = "0.0.0.0";
port = 8448; port = 8448;
ssl = true; ssl = true;
} }
{
addr = "[::]";
port = 8448;
ssl = true;
}
]; ];
locations."/_matrix/" = { locations."/_matrix/" = {
@ -126,7 +116,7 @@ in {
upstreams = { upstreams = {
"backend_conduit" = { "backend_conduit" = {
servers = { servers = {
"[::1]:${toString config.services.matrix-conduit.settings.global.port}" = {}; "[0.0.0.0]:${toString config.services.matrix-conduit.settings.global.port}" = {};
}; };
}; };
}; };