diff options
| author | caley <195605706+cqley@users.noreply.github.com> | 2026-07-03 18:25:32 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-03 18:25:32 +0200 |
| commit | 65968a85d899c252d11a780356e4d5db6743f858 (patch) | |
| tree | 57f9a2a42e15d9b9e1ac50e9f15215e8a7622020 /nixos/hosts | |
| parent | 38bb890a0fde68cadd3f25ca72987d01d84e0dd0 (diff) | |
Update configuration.nix
Diffstat (limited to 'nixos/hosts')
| -rw-r--r-- | nixos/hosts/bin/configuration.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/hosts/bin/configuration.nix b/nixos/hosts/bin/configuration.nix index 2042eb0..d767b01 100644 --- a/nixos/hosts/bin/configuration.nix +++ b/nixos/hosts/bin/configuration.nix @@ -29,7 +29,7 @@ networking.firewall = { enable = true; - allowedTCPPorts = [ 25565 8090 ]; + allowedTCPPorts = [ 25565 ]; allowedUDPPorts = [ 51820 ]; trustedInterfaces = [ "wg0" ]; }; @@ -117,7 +117,7 @@ wantedBy = [ "multi-user.target" ]; after = [ "network.target" ]; serviceConfig = { - ExecStart = "${pkgs.pocketbase}/bin/pocketbase serve --http=0.0.0.0:8090 --dir=/var/lib/pocketbase --publicDir=/var/lib/pocketbase/pb_public"; + ExecStart = "${pkgs.pocketbase}/bin/pocketbase serve --http=10.0.0.1:8090 --dir=/var/lib/pocketbase --publicDir=/var/lib/pocketbase/pb_public"; Restart = "no"; }; }; |
