Replace placeholder keys

This commit is contained in:
Yan Lin 2025-09-10 19:06:36 +02:00
parent 9b0c68540e
commit c3527ce8e8
2 changed files with 3 additions and 7 deletions

View file

@ -296,10 +296,8 @@
mode = "client"; mode = "client";
clientConfig = { clientConfig = {
address = "10.2.2.20/24"; address = "10.2.2.20/24";
# Public key will be generated when VPS is configured serverPublicKey = "46QHjSzAas5g9Hll1SCEu9tbR5owCxXAy6wGOUoPwUM=";
# Replace with actual public key from VPS after initial setup serverEndpoint = "91.98.84.215:51820";
serverPublicKey = "REPLACE_WITH_VPS_PUBLIC_KEY";
serverEndpoint = "YOUR_VPS_IP:51820"; # Replace with actual VPS public IP
allowedIPs = [ "10.2.2.0/24" ]; allowedIPs = [ "10.2.2.0/24" ];
}; };
}; };

View file

@ -144,9 +144,7 @@
peers = [ peers = [
{ {
name = "hs"; name = "hs";
# Public key will be generated when HS is configured publicKey = "HZY7V8QlnFvY6ZWNiI0WgUgWUISnEqUdzXi7Oq9M1Es=";
# Replace with actual public key from HS after initial setup
publicKey = "REPLACE_WITH_HS_PUBLIC_KEY";
allowedIPs = [ "10.2.2.20/32" ]; allowedIPs = [ "10.2.2.20/32" ];
} }
]; ];