diff options
| author | Baitinq <[email protected]> | 2022-09-28 21:16:31 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-09-29 13:47:04 +0200 |
| commit | 9a132baaedd53be592aada655379ab2e7bd295dc (patch) | |
| tree | 7e2b3cdb4739105a23bccbdf21c25dd14e43c4fb /hosts | |
| parent | Misc: Comments cleanup (diff) | |
| download | nixos-config-9a132baaedd53be592aada655379ab2e7bd295dc.tar.gz nixos-config-9a132baaedd53be592aada655379ab2e7bd295dc.tar.bz2 nixos-config-9a132baaedd53be592aada655379ab2e7bd295dc.zip | |
Firewall: Allow tcp:9090 (calibre)
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/configuration.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix index eebbf81..4a34c39 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -42,7 +42,7 @@ nameservers = [ "9.9.9.9" ]; firewall = { enable = true; - allowedTCPPorts = [ 80 22 ]; + allowedTCPPorts = [ 80 22 9090 ]; # networking.firewall.allowedUDPPorts = [ ... ]; # Or disable the firewall altogether. }; |