From 43e411eed4885c567532c5ca75b880ec6dad71a2 Mon Sep 17 00:00:00 2001 From: tdback Date: Fri, 27 Dec 2024 19:48:25 -0500 Subject: eden: add lubelogger container --- modules/containers/lubelogger/default.nix | 35 +++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 modules/containers/lubelogger/default.nix (limited to 'modules') diff --git a/modules/containers/lubelogger/default.nix b/modules/containers/lubelogger/default.nix new file mode 100644 index 0000000..eb3f58f --- /dev/null +++ b/modules/containers/lubelogger/default.nix @@ -0,0 +1,35 @@ +{ lib, ... }: +let + directory = "/opt/lubelogger"; + port = "8889"; +in +{ + systemd.tmpfiles.rules = + builtins.map (x: "d ${x} 0755 share share - -") (lib.lists.singleton directory); + + virtualisation.oci-containers.containers.lubelogger = { + image = "ghcr.io/hargata/lubelogger:latest"; + autoStart = true; + ports = [ "${port}:8080" ]; + volumes = [ + "${directory}/config:/App/config" + "${directory}/data:/App/data" + "${directory}/translations:/App/wwwroot/translations" + "${directory}/documents:/App/wwwroot/documents" + "${directory}/images:/App/wwwroot/images" + "${directory}/temp:/App/wwwroot/temp" + "${directory}/log:/App/log" + "${directory}/keys:/root/.aspnet/DataProtection-Keys" + ]; + environment = { + LC_ALL = "en_US.UTF-8"; + LANG = "en_US.UTF-8"; + LUBELOGGER_ALLOWED_FILE_EXTENSIONS = "*"; + }; + }; + + services.caddy.virtualHosts."garage.brownbread.net".extraConfig = '' + encode zstd gzip + reverse_proxy http://localhost:${port} + ''; +} -- cgit v1.2.3