fix(services/synapse): change bind address in listener
Some checks failed
Nix CI / build (push) Has been cancelled

This commit is contained in:
Rustam Efimov 2026-04-14 22:02:43 +03:00
parent 9bcd40f180
commit 9d9060d68d
No known key found for this signature in database

View file

@ -24,7 +24,7 @@ mkIf enable {
listeners = [
{
inherit port;
bind_addresses = [ "127.0.0.1" ];
bind_addresses = [ "::1" ];
type = "http";
tls = false;
x_forwarded = true;