fix(thinkcentre): allow traggo through firewall

This commit is contained in:
Michael Thomas 2024-05-06 21:38:36 -04:00
parent 0870c20e4e
commit b03c42e9dd

View File

@ -13,7 +13,7 @@
networking.firewall = {
enable = true;
interfaces."wg0" = {
allowedTCPPorts = [7654];
allowedTCPPorts = [7654 3030];
};
};
@ -90,7 +90,7 @@
virtualisation.oci-containers.containers.traggo = {
image = "traggo/server:latest";
autoStart = true;
ports = ["127.0.0.1:3030:3030"];
ports = ["3030:3030"];
volumes = [
"/var/lib/traggo/data:/opt/traggo/data"
];