From 5a8c6f6be2bc77e2d68b7c46907195ad3479eb43 Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Tue, 30 Apr 2024 17:04:34 -0500 Subject: [PATCH] Update matchbox port. --- nixos/telperion/configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/telperion/configuration.nix b/nixos/telperion/configuration.nix index 2e993a8..9d975a2 100644 --- a/nixos/telperion/configuration.nix +++ b/nixos/telperion/configuration.nix @@ -87,7 +87,7 @@ # also this double pxe-service config hack sucks, but it works. pxe-service='' tag:#ipxe,x86PC,"PXE chainload to iPXE",undionly.kpxe - pxe-service=tag:ipxe,0,matchbox,http://10.1.1.57/boot.ipxe + pxe-service=tag:ipxe,0,matchbox,http://10.1.1.57:8086/boot.ipxe ''; log-queries = true; log-dhcp = true; @@ -108,7 +108,7 @@ wantedBy = [ "multi-user.target" ]; after = [ "network.target" ]; serviceConfig = { - ExecStart = "${pkgs.matchbox-server}/bin/matchbox -address=0.0.0.0:80 -data-path=/srv/matchbox -assets-path=/srv/matchbox/assets -log-level=debug"; + ExecStart = "${pkgs.matchbox-server}/bin/matchbox -address=0.0.0.0:8086 -data-path=/srv/matchbox -assets-path=/srv/matchbox/assets -log-level=debug"; Restart = "on-failure"; User = "matchbox"; Group = "matchbox";