mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
61 lines
1.5 KiB
Nix
61 lines
1.5 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.nginx.sso;
|
|
pkg = getBin cfg.package;
|
|
configYml = pkgs.writeText "nginx-sso.yml" (builtins.toJSON cfg.configuration);
|
|
in {
|
|
options.services.nginx.sso = {
|
|
enable = mkEnableOption "nginx-sso service";
|
|
|
|
package = mkPackageOption pkgs "nginx-sso" { };
|
|
|
|
configuration = mkOption {
|
|
type = types.attrsOf types.unspecified;
|
|
default = {};
|
|
example = literalExpression ''
|
|
{
|
|
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
|
|
([documentation](https://github.com/Luzifer/nginx-sso/wiki/Main-Configuration))
|
|
as a Nix attribute set.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.services.nginx-sso = {
|
|
description = "Nginx SSO Backend";
|
|
after = [ "network.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
serviceConfig = {
|
|
ExecStart = ''
|
|
${pkg}/bin/nginx-sso \
|
|
--config ${configYml} \
|
|
--frontend-dir ${pkg}/share/frontend
|
|
'';
|
|
Restart = "always";
|
|
DynamicUser = true;
|
|
};
|
|
};
|
|
};
|
|
}
|