petersweb-infra/nixos/firewall.nix
Philip Peterson 742aa14eae add caddy
2024-12-24 06:49:21 -05:00

15 lines
213 B
Nix

{pkgs, ...}: {
networking.firewall.allowedTCPPorts = [
80 #nginx/http
22 #ssh
222 #ubuntu vm ssh
443 #ssl
2200 #forgejo ssh
3000 #forgejo http
9090 #sync.io
9091 #caddy
];
}