about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@tvl.su>2024-09-15T23·19+0300
committertazjin <tazjin@tvl.su>2024-09-16T08·20+0000
commite04bbe92a0c6f74ad842a821b43f04992199ab05 (patch)
tree8edf586672b9e65a30ba547fb2a9c1d6ef39acca
parent684a06ac3cce87cfd07d51ccc7c532323bc2eef0 (diff)
fix(tazjin/koptevo): fix yggdrasil listening configuration r/8700
Change-Id: Ic7b89fc61f7d5b74e420ae633b2ced26c20909c3
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12492
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
-rw-r--r--users/tazjin/nixos/koptevo/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/users/tazjin/nixos/koptevo/default.nix b/users/tazjin/nixos/koptevo/default.nix
index 86abae119449..d1fe793915a7 100644
--- a/users/tazjin/nixos/koptevo/default.nix
+++ b/users/tazjin/nixos/koptevo/default.nix
@@ -204,7 +204,7 @@ in
     openMulticastPort = true;
 
     settings = {
-      Listen = [ "tls://[::]:0" ];
+      Listen = [ "tls://[::]:9443" ]; # yggd
       IfName = "ygg0";
       Peers = [
         "quic://ygg-msk-1.averyan.ru:8364"
@@ -216,11 +216,11 @@ in
         Regex = "enp.*";
         Beacon = true;
         Listen = true;
-        Port = 9443; # yggd
+        Port = 0;
       }];
 
       AllowedPublicKeys = [
-        "573fd89392e2741ead4edd85034c91c88f1e560d991bbdbf1fccb6233db4d325" # koptevo
+        "573fd89392e2741ead4edd85034c91c88f1e560d991bbdbf1fccb6233db4d325" # khamovnik
       ];
     };
   };