2021-09-25 16:01:41 +02:00
|
|
|
# I must override the module to allow having runtime secrets
|
|
|
|
{ config, lib, pkgs, utils, ... }:
|
|
|
|
let
|
|
|
|
cfg = config.services.nginx.sso;
|
|
|
|
pkg = lib.getBin cfg.package;
|
|
|
|
confPath = "/var/lib/nginx-sso/config.json";
|
|
|
|
in
|
|
|
|
{
|
|
|
|
disabledModules = [ "services/security/nginx-sso.nix" ];
|
|
|
|
|
|
|
|
|
|
|
|
options.services.nginx.sso = with lib; {
|
|
|
|
enable = mkEnableOption "nginx-sso service";
|
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.nginx-sso;
|
|
|
|
defaultText = "pkgs.nginx-sso";
|
|
|
|
description = ''
|
|
|
|
The nginx-sso package that should be used.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
configuration = mkOption {
|
|
|
|
type = types.attrsOf types.unspecified;
|
|
|
|
default = { };
|
|
|
|
example = literalExample ''
|
|
|
|
{
|
|
|
|
listen = { addr = "127.0.0.1"; port = 8080; };
|
|
|
|
|
|
|
|
providers.token.tokens = {
|
|
|
|
myuser = "MyToken";
|
|
|
|
};
|
|
|
|
|
|
|
|
acl = {
|
|
|
|
rule_sets = [
|
|
|
|
{
|
|
|
|
rules = [ { field = "x-application"; equals = "MyApp"; } ];
|
|
|
|
allow = [ "myuser" ];
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
nginx-sso configuration
|
|
|
|
(<link xlink:href="https://github.com/Luzifer/nginx-sso/wiki/Main-Configuration">documentation</link>)
|
|
|
|
as a Nix attribute set.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
systemd.services.nginx-sso = {
|
|
|
|
description = "Nginx SSO Backend";
|
|
|
|
after = [ "network.target" ];
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig = {
|
|
|
|
StateDirectory = "nginx-sso";
|
|
|
|
WorkingDirectory = "/var/lib/nginx-sso";
|
|
|
|
# The files to be merged might not have the correct permissions
|
2024-09-04 12:07:33 +02:00
|
|
|
ExecStartPre = pkgs.writeShellScript "merge-nginx-sso-config" ''
|
2021-11-05 15:12:14 +01:00
|
|
|
rm -f '${confPath}'
|
2021-09-25 16:01:41 +02:00
|
|
|
${utils.genJqSecretsReplacementSnippet cfg.configuration confPath}
|
2024-09-04 12:07:33 +02:00
|
|
|
'';
|
2021-09-25 16:01:41 +02:00
|
|
|
ExecStart = lib.mkForce ''
|
2023-07-23 19:58:40 +02:00
|
|
|
${lib.getExe pkg} \
|
2021-09-25 16:01:41 +02:00
|
|
|
--config ${confPath} \
|
|
|
|
--frontend-dir ${pkg}/share/frontend
|
|
|
|
'';
|
|
|
|
Restart = "always";
|
|
|
|
User = "nginx-sso";
|
|
|
|
Group = "nginx-sso";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
users.users.nginx-sso = {
|
|
|
|
isSystemUser = true;
|
|
|
|
group = "nginx-sso";
|
|
|
|
};
|
|
|
|
|
|
|
|
users.groups.nginx-sso = { };
|
|
|
|
};
|
|
|
|
}
|