This commit is contained in:
Philip Peterson 2024-12-20 05:43:44 -05:00
parent 3c27530b04
commit 4a55d0821b
No known key found for this signature in database
GPG key ID: 354311183FC6519B
2 changed files with 11 additions and 2 deletions

View file

@ -27,7 +27,7 @@
];
ports = [
"3000:3000",
"222:22"
"2200:22"
];

View file

@ -1,3 +1,12 @@
{pkgs, ...}: {
networking.firewall.allowedTCPPorts = [80 22 443 8009 222];
networking.firewall.allowedTCPPorts = [
80
22
443
8009
222 #ubuntu vm
3000 #forgejo
2200 #forgejo
];
}