summary refs log tree commit diff stats
path: root/system/services/etebase/default.nix
blob: 5d0284f4290273763e803a7cc8e74c36034e5187 (plain) (blame)
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
36
37
38
39
40
41
42
43
44
45
{
  config,
  ...
}: {
  services.etebase-server = {
    enable = true;
    port = 8001;
    settings = {
      global.secret_file = "${config.age.secrets.etebase-server.path}";
      allowed_hosts = {
        allowed_host1 = "etebase.vhack.eu";
        allowed_host2 = "dav.vhack.eu";
      };
    };
  };

  services.nginx = {
    enable = true;
    recommendedTlsSettings = true;
    recommendedOptimisation = true;
    recommendedGzipSettings = true;
    recommendedProxySettings = true;

    virtualHosts = {
      "etebase.vhack.eu" = {
        enableACME = true;
        forceSSL = true;

        locations = {
          # TODO: Maybe fix permissions to use pregenerated static files which would
          # improve performance.
          #"/static" = {
          #  root = config.services.etebase-server.settings.global.static_root;
          #};
          "/" = {
            proxyPass = "http://127.0.0.1:${builtins.toString config.services.etebase-server.port}";
          };
        };
        serverAliases = [
          "dav.vhack.eu"
        ];
      };
    };
  };
}