aboutsummaryrefslogtreecommitdiff
path: root/modules/private/websites/tools/db/default.nix
blob: fc8d98929d2a8350f471c194af59d9f1a36ed2e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, pkgs, config,  ... }:
let
    adminer = pkgs.callPackage ../../commons/adminer.nix { inherit config; };

    cfg = config.myServices.websites.tools.db;
in {
  options.myServices.websites.tools.db = {
    enable = lib.mkEnableOption "enable database's website";
  };

  config = lib.mkIf cfg.enable {
    services.websites.env.tools.modules = adminer.apache.modules;
    services.websites.env.tools.vhostConfs.db-1 = {
      certName    = "eldiron";
      addToCerts  = true;
      hosts       = ["db-1.immae.eu" ];
      root        = null;
      extraConfig = [ (adminer.apache.vhostConf null) ];
    };
  };
}