Skip to content

Commit

Permalink
authentik.outposts.proxy: init at 2024.12.1
Browse files Browse the repository at this point in the history
(cherry picked from commit 813e481)
  • Loading branch information
jvanbruegge authored and github-actions[bot] committed Dec 24, 2024
1 parent bb25413 commit 4afc566
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkgs/by-name/au/authentik/outposts.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{ callPackage }:
{
ldap = callPackage ./ldap.nix { };
proxy = callPackage ./proxy.nix { };
radius = callPackage ./radius.nix { };
}
21 changes: 21 additions & 0 deletions pkgs/by-name/au/authentik/proxy.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
buildGoModule,
authentik,
}:

buildGoModule {
pname = "authentik-proxy-outpost";
inherit (authentik) version src;

vendorHash = "sha256-FyRTPs2xfostV2x03IjrxEYBSrsZwnuPn+oHyQq1Kq0=";

env.CGO_ENABLED = 0;

subPackages = [ "cmd/proxy" ];

meta = authentik.meta // {
description = "Authentik proxy outpost which is used for HTTP reverse proxy authentication";
homepage = "https://goauthentik.io/docs/providers/proxy/";
mainProgram = "proxy";
};
}

0 comments on commit 4afc566

Please sign in to comment.