about summary refs log tree commit diff
path: root/nix/hosts/corrino/www/db.emile.space.nix
blob: 7cb365e533373316e78b9fffd839bc95cc4b8052 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ config, ... }:

{
  services.nginx.virtualHosts."db.emile.space" = {
    forceSSL = true;
    enableACME = true;

    locations = {
      "/" = {
        proxyPass = "http://127.0.0.1:${toString config.emile.ports.nocodb}";
      };
    };
  };
  virtualisation.oci-containers = {
    containers = {
      "noco" = {
        image = "nocodb/nocodb:latest";
				volumes = [ "nocodb:/usr/app/data" ];
        ports = [ "${toString config.emile.ports.nocodb}:8080" ];
      };
    };
  };
}