From e9fb2c17e5855bf507db9783c0f3f11b32e2e706 Mon Sep 17 00:00:00 2001 From: Dante DeLucia Date: Thu, 19 Jun 2025 17:50:39 -0700 Subject: [PATCH 1/2] Configure logging to stdout for journalctl --- aws-validator-fd-ts/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/aws-validator-fd-ts/index.ts b/aws-validator-fd-ts/index.ts index 6e9a0ff..e1ebcf5 100644 --- a/aws-validator-fd-ts/index.ts +++ b/aws-validator-fd-ts/index.ts @@ -131,6 +131,9 @@ new svmkit.validator.Firedancer( port: 8899, private: true, }, + log: { + path: "-", + }, }, }, { From 6887319022110500b846ba9a0c9b2ec96af5a29a Mon Sep 17 00:00:00 2001 From: Dante DeLucia Date: Thu, 19 Jun 2025 19:39:03 -0700 Subject: [PATCH 2/2] Add necessary ports to firewall --- aws-validator-fd-ts/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/aws-validator-fd-ts/index.ts b/aws-validator-fd-ts/index.ts index e1ebcf5..36d6f54 100644 --- a/aws-validator-fd-ts/index.ts +++ b/aws-validator-fd-ts/index.ts @@ -56,6 +56,7 @@ const firewallParams = genericFirewallParamsOutput.apply((f) => ({ "8000:8020/udp", "8899", "8900/tcp", + "8900:8915/udp", ], }));