diff options
author | Maximilien Richer <me@mricher.fr> | 2025-02-10 11:06:24 +0100 |
---|---|---|
committer | Maximilien Richer <me@mricher.fr> | 2025-02-10 11:06:24 +0100 |
commit | 38929646bfd35568000d052277e37ca66011bc99 (patch) | |
tree | a728ef9c568e514f5be6e7262d9d1db194b40567 /nix/deuxfleurs.nix | |
parent | 43c46ef04109e926d3bae1ccb0f96d8d271677f2 (diff) | |
download | nixcfg-38929646bfd35568000d052277e37ca66011bc99.tar.gz nixcfg-38929646bfd35568000d052277e37ca66011bc99.zip |
Move ssh to port 110, update nomad to 1.7
Diffstat (limited to 'nix/deuxfleurs.nix')
-rw-r--r-- | nix/deuxfleurs.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/deuxfleurs.nix b/nix/deuxfleurs.nix index 45a64c0..1b9ae3d 100644 --- a/nix/deuxfleurs.nix +++ b/nix/deuxfleurs.nix @@ -412,8 +412,8 @@ in enable = true; allowedTCPPorts = [ - # Allow anyone to connect on SSH port - (head ({ openssh.ports = [22]; } // config.services).openssh.ports) + # Allow anyone to connect on SSH port on tcp/110, port 22 is used by forgejo + (head ({ openssh.ports = [ 110 ]; } // config.services).openssh.ports) ]; allowedUDPPorts = [ |