petersweb-infra/nixos/firewall.nix

16 lines
213 B
Nix
Raw Normal View History

2024-11-15 22:00:01 -09:00
{pkgs, ...}: {
2024-12-20 01:43:44 -09:00
networking.firewall.allowedTCPPorts = [
2024-12-24 02:49:21 -09:00
80 #nginx/http
22 #ssh
222 #ubuntu vm ssh
443 #ssl
2200 #forgejo ssh
3000 #forgejo http
2024-12-20 01:43:44 -09:00
2024-12-21 03:53:58 -09:00
9090 #sync.io
2024-12-24 02:49:21 -09:00
9091 #caddy
2024-12-20 01:43:44 -09:00
];
2024-11-15 22:00:01 -09:00
}