This commit is contained in:
rasmus-kirk
2025-05-28 09:38:44 +02:00
parent 51d090c71f
commit d75ce74ffa
2 changed files with 9 additions and 7 deletions
+4 -2
View File
@@ -308,11 +308,13 @@ in {
port = cfg.vpn.vpnTestService.port; port = cfg.vpn.vpnTestService.port;
protocol = "tcp"; protocol = "tcp";
}; };
accessibleFrom = [ accessibleFrom =
[
"192.168.1.0/24" "192.168.1.0/24"
"192.168.0.0/24" "192.168.0.0/24"
"127.0.0.1" "127.0.0.1"
] ++ cfg.vpn.accessibleFrom ; ]
++ cfg.vpn.accessibleFrom;
wireguardConfigFile = cfg.vpn.wgConf; wireguardConfigFile = cfg.vpn.wgConf;
}; };