1
0
Fork 0
forked from fi/nix-infra

Add config for public reverse proxy

This commit is contained in:
fi 2023-07-20 06:29:15 +02:00
commit ade955bdf4
Signed by: fi
SSH key fingerprint: SHA256:d+6fQoDPMbSFK95zRVflRKZLRKF4cPSQb7VIxYkhFsA
7 changed files with 325 additions and 6 deletions

View file

@ -5,8 +5,20 @@
device = "/dev/vda";
};
networking = {
hostName = "web-public-02";
networking = {
interfaces = {
"enp6s18".ipv6.addresses = [{
address = "2001:470:5429::96";
prefixLength = 64;
}];
};
defaultGateway6 = {
address = "2001:470:5429::1";
interface = "enp6s18";
};
hostName = "web-public-2";
firewall.enable = false;
};