Updated pods port
All checks were successful
Deploy NixOS / deploy (push) Successful in 30s

This commit is contained in:
2026-02-22 15:08:41 -07:00
parent bdf7644b9d
commit 3195fb0968
2 changed files with 7 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
{ config, pkgs, lib, ... }:
{ ... }:
{
services.fail2ban = {

View File

@@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ ... }:
let
settings = import ../settings.nix;
@@ -10,7 +10,11 @@ in
networking.firewall = {
enable = true;
allowedTCPPorts = [ 22 80 443 ];
allowedTCPPorts = [
22
80
443
];
allowedUDPPorts = [ ];
};
}