mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
nixos/tests/headscale: remove dependency on Tailscale's DERP servers
Testing with them results in a failure due to no network connectivity. https://headscale.net/stable/ref/derp/#remove-tailscales-derp-servers
This commit is contained in:
parent
b6a8526db0
commit
b3a7332207
1 changed files with 7 additions and 4 deletions
|
|
@ -38,10 +38,13 @@ in
|
|||
settings = {
|
||||
server_url = "https://headscale";
|
||||
ip_prefixes = [ "100.64.0.0/10" ];
|
||||
derp.server = {
|
||||
enabled = true;
|
||||
region_id = 999;
|
||||
stun_listen_addr = "0.0.0.0:${toString stunPort}";
|
||||
derp = {
|
||||
server = {
|
||||
enabled = true;
|
||||
region_id = 999;
|
||||
stun_listen_addr = "0.0.0.0:${toString stunPort}";
|
||||
};
|
||||
urls = [ ];
|
||||
};
|
||||
dns = {
|
||||
base_domain = "tailnet";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue