summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorseth <[email protected]>2023-05-14 12:43:50 -0400
committerseth <[email protected]>2023-05-14 12:43:50 -0400
commita8d2b1bc2a138376acad725894c9ff72648ca963 (patch)
tree76a9786c6cce17a16a649957b791649922de8db0 /hosts
parentbbedc6d466ef240c2ff1956e4155fdeb8dfc6d78 (diff)
p-body: allow http(s) ports through firewall
Diffstat (limited to 'hosts')
-rw-r--r--hosts/p-body/nginx.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/hosts/p-body/nginx.nix b/hosts/p-body/nginx.nix
index b7fb016..58b471c 100644
--- a/hosts/p-body/nginx.nix
+++ b/hosts/p-body/nginx.nix
@@ -5,6 +5,8 @@
}: let
inherit (config.networking) domain;
in {
+ networking.firewall.allowedTCPPorts = [80 443];
+
security.acme = {
acceptTerms = true;
defaults.email = "[email protected]";