petersweb-infra/nixos/firewall.nix
Philip Peterson 8218ddb930
remove caddy
2025-01-03 23:25:04 -09:00

15 lines
214 B
Nix

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