2023-09-17 19:51:08 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
inputs,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib; let
|
|
|
|
cfg = config.services.ldap_backend;
|
|
|
|
port_backend = "8087";
|
|
|
|
in {
|
2023-06-18 21:49:31 +00:00
|
|
|
imports = [
|
|
|
|
../acme.nix
|
|
|
|
../dns.nix
|
|
|
|
../nginx.nix
|
2023-07-21 20:56:19 +00:00
|
|
|
inputs.skynet_ldap_backend.nixosModule."x86_64-linux"
|
2023-10-09 16:40:40 +00:00
|
|
|
../../config/users.nix
|
2023-06-18 21:49:31 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
options.services.ldap_backend = {
|
|
|
|
enable = mkEnableOption "Skynet LDAP backend server";
|
|
|
|
|
|
|
|
host = {
|
|
|
|
ip = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
};
|
|
|
|
|
|
|
|
name = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
domain = {
|
|
|
|
tld = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "ie";
|
|
|
|
};
|
|
|
|
|
|
|
|
base = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "skynet";
|
|
|
|
};
|
|
|
|
|
|
|
|
sub = mkOption {
|
|
|
|
type = types.str;
|
2023-08-06 18:00:02 +00:00
|
|
|
default = "api.account";
|
2023-06-18 21:49:31 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
#backups = [ "/etc/silver_ul_ical/database.db" ];
|
|
|
|
|
2023-09-12 11:05:38 +00:00
|
|
|
age.secrets.ldap_details.file = ../../secrets/ldap/details.age;
|
2023-08-27 21:31:08 +00:00
|
|
|
age.secrets.ldap_discord.file = ../../secrets/discord/ldap.age;
|
2023-09-12 11:05:38 +00:00
|
|
|
age.secrets.ldap_mail.file = ../../secrets/email/details.age;
|
2023-06-18 21:49:31 +00:00
|
|
|
|
2023-08-06 19:09:15 +00:00
|
|
|
skynet_acme.domains = [
|
|
|
|
"${cfg.domain.sub}.${cfg.domain.base}.${cfg.domain.tld}"
|
|
|
|
];
|
|
|
|
|
2023-07-16 00:53:21 +00:00
|
|
|
skynet_dns.records = [
|
2023-09-17 19:51:08 +00:00
|
|
|
{
|
|
|
|
record = cfg.domain.sub;
|
|
|
|
r_type = "CNAME";
|
|
|
|
value = cfg.host.name;
|
|
|
|
}
|
2023-06-18 21:49:31 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
services.nginx.virtualHosts."${cfg.domain.sub}.${cfg.domain.base}.${cfg.domain.tld}" = {
|
|
|
|
forceSSL = true;
|
|
|
|
useACMEHost = "skynet";
|
|
|
|
locations."/".proxyPass = "http://localhost:${port_backend}";
|
2023-07-27 23:05:11 +00:00
|
|
|
|
2023-09-17 19:51:08 +00:00
|
|
|
# extraConfig = ''
|
|
|
|
# add_header Access-Control-Allow-Origin "https://account.${cfg.domain.base}.${cfg.domain.tld}";
|
|
|
|
# '';
|
2023-07-27 23:05:11 +00:00
|
|
|
extraConfig = ''
|
2023-09-26 17:11:02 +00:00
|
|
|
add_header Access-Control-Allow-Origin "*";
|
2023-07-27 23:05:11 +00:00
|
|
|
'';
|
2023-06-18 21:49:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
services.skynet_ldap_backend = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
# contains teh password in env form
|
2023-08-27 21:31:08 +00:00
|
|
|
env = {
|
2023-09-12 11:05:38 +00:00
|
|
|
ldap = config.age.secrets.ldap_details.path;
|
2023-08-27 21:31:08 +00:00
|
|
|
discord = config.age.secrets.ldap_discord.path;
|
2023-09-12 11:05:38 +00:00
|
|
|
mail = config.age.secrets.ldap_mail.path;
|
2023-06-18 21:49:31 +00:00
|
|
|
};
|
|
|
|
|
2023-09-16 14:52:23 +00:00
|
|
|
host_port = "127.0.0.1:${port_backend}";
|
2023-10-09 16:40:40 +00:00
|
|
|
users = config.users;
|
2023-06-18 21:49:31 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|