nixcfg/cluster/staging/site/neptune.nix

17 lines
554 B
Nix
Raw Normal View History

2021-11-18 15:40:19 +00:00
{ config, pkgs, ... }:
{
deuxfleurs.site_name = "neptune";
2022-05-08 12:42:18 +00:00
deuxfleurs.lan_default_gateway = "192.168.1.1";
2022-10-16 17:10:51 +00:00
deuxfleurs.ipv6_default_gateway = "2001:910:1204:1::1";
deuxfleurs.lan_ip_prefix_length = 24;
deuxfleurs.ipv6_prefix_length = 64;
deuxfleurs.cname_target = "neptune.site.staging.deuxfleurs.org.";
2021-11-18 15:40:19 +00:00
2022-12-07 16:13:03 +00:00
# no public ipv4 is used for the staging cluster on Neptune,
# because the Internet connection is already used for the prod cluster
# deuxfleurs.public_ipv4 = "77.207.15.215";
2021-12-08 16:57:54 +00:00
networking.firewall.allowedTCPPorts = [ 80 443 ];
2021-11-18 15:40:19 +00:00
}