mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-09 15:10:19 +02:00
fixed synapse who was not binding to ipv4
This commit is contained in:
parent
1b7fecf202
commit
bbe94ad466
4 changed files with 22 additions and 12 deletions
|
@ -9,7 +9,7 @@ let
|
|||
baseUrl = "https://talk.hypervirtual.world";
|
||||
in
|
||||
{
|
||||
|
||||
networking.domain = "hypervirtual.world";
|
||||
sops.secrets.data = {
|
||||
sopsFile = ../secrets/matrix.yaml;
|
||||
format = "yaml";
|
||||
|
@ -20,13 +20,16 @@ in
|
|||
enable = true;
|
||||
|
||||
settings = {
|
||||
serverName = baseUrl;
|
||||
serverName = "hypervirtual.world";
|
||||
public_baseurl = baseUrl;
|
||||
enable_registration = false;
|
||||
listeners = [
|
||||
{
|
||||
port = 8008;
|
||||
bind_addresses = [ "::1" ];
|
||||
bind_addresses = [
|
||||
"::1"
|
||||
"127.0.0.1"
|
||||
];
|
||||
type = "http";
|
||||
tls = false;
|
||||
x_forwarded = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue