From 718b0aa8fca0f23894c8ef8359ca0189f84e30ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Thu, 2 Nov 2023 18:04:13 +0000 Subject: [PATCH] run influx on bolty --- nixos/boxes/bolty/default.nix | 1 + nixos/boxes/bolty/influxdb.nix | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/boxes/bolty/default.nix b/nixos/boxes/bolty/default.nix index f7460489..ab52896f 100644 --- a/nixos/boxes/bolty/default.nix +++ b/nixos/boxes/bolty/default.nix @@ -7,6 +7,7 @@ ./grafana.nix ./home-assistant.nix ./home-security.nix + ./influxdb.nix ./logs.nix ./nas.nix ./networking.nix diff --git a/nixos/boxes/bolty/influxdb.nix b/nixos/boxes/bolty/influxdb.nix index 706a25bb..12916007 100644 --- a/nixos/boxes/bolty/influxdb.nix +++ b/nixos/boxes/bolty/influxdb.nix @@ -5,7 +5,6 @@ lib, ... }: let - fqdn = "bolty.raptor-carp.ts.net"; port = 8086; path = "/data/influxdb"; certPath = "${path}/cert.pem"; @@ -48,7 +47,7 @@ in { services.influxdb2 = { enable = true; settings = { - http-bind-address = "${fqdn}:${toString port}"; + http-bind-address = "0.0.0.0:${toString port}"; tls-cert = "${certPath}"; tls-key = "${keyPath}"; };