Dev ports

This commit is contained in:
Daniel Flanagan 2024-01-19 09:39:21 -06:00
parent 768dca4c83
commit fd8055f1ab
Signed by: lytedev
GPG Key ID: 5B2020A0F9921EF4
3 changed files with 11 additions and 1 deletions

View File

@ -22,7 +22,8 @@ git add -A
host=your_host
ssh -t "root@$host" "bash -c '
set -m
(sleep 300; reboot;) &
# sleep 30 mins
(sleep 1800; reboot;) &
jobs -p
bg
disown

View File

@ -284,6 +284,10 @@ sudo nix run nixpkgs#ipmitool -- raw 0x30 0x30 0x02 0xff 0x00
reverse_proxy :8096
}
dev.h.lyte.dev {
reverse_proxy :8000
}
# lidarr.h.lyte.dev {
# reverse_proxy :8686
# }
@ -739,6 +743,7 @@ sudo nix run nixpkgs#ipmitool -- raw 0x30 0x30 0x02 0xff 0x00
# 5357 # ???
22 # ssh
6667 # soju irc bouncer
8000 # random development stuff
64022 # ssh (for ben?)
];
networking.firewall.allowedUDPPorts = [

View File

@ -215,5 +215,9 @@ in {
};
};
networking.firewall.allowedTCPPorts = [
8000 # dev stuff
];
system.stateVersion = "24.05";
}