stan: open port 8080 in testing mode

This commit is contained in:
Aaron Bieber 2023-11-14 06:49:31 -07:00
parent 5e408b252f
commit 1ba9694aa1
No known key found for this signature in database

View File

@ -107,9 +107,9 @@ in
networkmanager.enable = true; networkmanager.enable = true;
firewall = { firewall = {
allowedTCPPorts = [ 22 ] ++ (if testingMode then [ ] else [ ]); allowedTCPPorts = [ 22 ] ++ (if testingMode then [ 8080 ] else [ ]);
checkReversePath = "loose";
allowedUDPPorts = if testingMode then [ syslogPort ] else [ ]; allowedUDPPorts = if testingMode then [ syslogPort ] else [ ];
checkReversePath = "loose";
}; };
}; };