diff options
| author | seth <[email protected]> | 2023-05-14 12:43:50 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-05-14 12:43:50 -0400 |
| commit | a8d2b1bc2a138376acad725894c9ff72648ca963 (patch) | |
| tree | 76a9786c6cce17a16a649957b791649922de8db0 | |
| parent | bbedc6d466ef240c2ff1956e4155fdeb8dfc6d78 (diff) | |
p-body: allow http(s) ports through firewall
| -rw-r--r-- | hosts/p-body/nginx.nix | 2 |
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]"; |
