aboutsummaryrefslogtreecommitdiff
path: root/modules/containers/lubelogger/default.nix
blob: eb3f58f93efd683b5177dae8a7e037ec4b5a6471 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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}
  '';
}