diff options
author | Alex Auvolat <alex@adnab.me> | 2023-01-04 11:10:10 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-01-04 11:10:10 +0100 |
commit | 3a8588a1ea5878b54d93346b14a6028683644b87 (patch) | |
tree | 06f99923ac72c8c446ec7add13df37bc8230d6cf | |
parent | da78f3671e2bc532ec64069516fac0ff885c4d7b (diff) | |
download | nixcfg-3a8588a1ea5878b54d93346b14a6028683644b87.tar.gz nixcfg-3a8588a1ea5878b54d93346b14a6028683644b87.zip |
Open ports 80 and 443 on all Orion nodes
-rw-r--r-- | cluster/prod/site/orion.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cluster/prod/site/orion.nix b/cluster/prod/site/orion.nix index 08ef51a..fb4ba22 100644 --- a/cluster/prod/site/orion.nix +++ b/cluster/prod/site/orion.nix @@ -10,5 +10,5 @@ deuxfleurs.cname_target = "orion.site.deuxfleurs.fr."; deuxfleurs.public_ipv4 = "82.66.80.201"; - networking.firewall.allowedTCPPorts = [ ]; + networking.firewall.allowedTCPPorts = [ 80 443 ]; } |