petersweb-infra/nixos/firewall.nix
Philip Peterson 68210230de
add nextcloud
2025-01-14 20:43:46 -09:00

16 lines
234 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
8087 #nextcloud
9090 #sync.io
];
}