summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authornhnn <nhnn@disroot.org>2024-05-16 18:18:58 +0300
committernhnn <nhnn@disroot.org>2024-05-21 11:47:39 +0300
commit3e14c44e21ee1c1d41888e7c39acb834be5e7b23 (patch)
tree31ddbcc0bdc6d43747873729e8ae2d44d48e37f8 /nixos
parent0bc0302b1889f53a5ee1979bcbf90209c09a6ba2 (diff)
nixos/simplesamlphp: init module
Diffstat (limited to 'nixos')
-rw-r--r--nixos/doc/manual/release-notes/rl-2405.section.md2
-rw-r--r--nixos/modules/module-list.nix1
-rw-r--r--nixos/modules/services/web-apps/simplesamlphp.nix128
3 files changed, 131 insertions, 0 deletions
diff --git a/nixos/doc/manual/release-notes/rl-2405.section.md b/nixos/doc/manual/release-notes/rl-2405.section.md
index d6b8ffe8609f..5665e7ba2592 100644
--- a/nixos/doc/manual/release-notes/rl-2405.section.md
+++ b/nixos/doc/manual/release-notes/rl-2405.section.md
@@ -217,6 +217,8 @@ The pre-existing [services.ankisyncd](#opt-services.ankisyncd.enable) has been m
- [keto](https://www.ory.sh/keto/), a permission & access control server, the first open source implementation of ["Zanzibar: Google's Consistent, Global Authorization System"](https://research.google/pubs/zanzibar-googles-consistent-global-authorization-system/).
+- [SimpleSAMLphp](https://simplesamlphp.org/), an application written in native PHP that deals with authentication (SQL, .htpasswd, YubiKey, LDAP, PAPI, Radius). Available as [services.simplesamlphp](#opt-services.simplesamlphp).
+
## Backward Incompatibilities {#sec-release-24.05-incompatibilities}
<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index b14b83a8119a..4e2b39f32a4e 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -1420,6 +1420,7 @@
./services/web-apps/selfoss.nix
./services/web-apps/shiori.nix
./services/web-apps/silverbullet.nix
+ ./services/web-apps/simplesamlphp.nix
./services/web-apps/slskd.nix
./services/web-apps/snipe-it.nix
./services/web-apps/sogo.nix
diff --git a/nixos/modules/services/web-apps/simplesamlphp.nix b/nixos/modules/services/web-apps/simplesamlphp.nix
new file mode 100644
index 000000000000..e970266fc17d
--- /dev/null
+++ b/nixos/modules/services/web-apps/simplesamlphp.nix
@@ -0,0 +1,128 @@
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
+let
+ cfg = config.services.simplesamlphp;
+
+ format = pkgs.formats.php { finalVariable = "config"; };
+
+ generateConfig =
+ opts:
+ pkgs.runCommand "simplesamlphp-config" { } ''
+ mkdir $out
+ cp ${format.generate "config.php" opts.settings} $out/config.php
+ cp ${format.generate "authsources.php" opts.authSources} $out/authsources.php
+ '';
+in
+{
+ meta = {
+ maintainers = with lib.maintainers; [ nhnn ];
+ };
+
+ options.services.simplesamlphp =
+ with lib;
+ mkOption {
+ type = types.attrsOf (
+ types.submodule (
+ { config, ... }:
+ {
+ options = {
+ package = mkPackageOption pkgs "simplesamlphp" { };
+ configureNginx = mkOption {
+ type = types.bool;
+ default = true;
+ description = "Configure nginx as a reverse proxy for SimpleSAMLphp.";
+ };
+ phpfpmPool = mkOption {
+ type = types.str;
+ description = "The PHP-FPM pool that serves SimpleSAMLphp instance.";
+ };
+ localDomain = mkOption {
+ type = types.str;
+ description = "The domain serving your SimpleSAMLphp instance. This option modifies only /saml route.";
+ };
+ settings = mkOption {
+ type = types.submodule {
+ freeformType = format.type;
+ options = {
+ baseurlpath = mkOption {
+ type = types.str;
+ example = "https://filesender.example.com/saml/";
+ description = "URL where SimpleSAMLphp can be reached.";
+ };
+ };
+ };
+ default = { };
+ description = ''
+ Configuration options used by SimpleSAMLphp.
+ See [](https://simplesamlphp.org/docs/stable/simplesamlphp-install)
+ for available options.
+ '';
+ };
+
+ authSources = mkOption {
+ type = format.type;
+ default = { };
+ description = ''
+ Auth sources options used by SimpleSAMLphp.
+ '';
+ };
+
+ libDir = mkOption {
+ type = types.str;
+ readOnly = true;
+ description = ''
+ Path to the SimpleSAMLphp library directory.
+ '';
+ };
+ configDir = mkOption {
+ type = types.str;
+ readOnly = true;
+ description = ''
+ Path to the SimpleSAMLphp config directory.
+ '';
+ };
+ };
+ config = {
+ libDir = "${config.package}/share/php/simplesamlphp/";
+ configDir = "${generateConfig config}";
+ };
+ }
+ )
+ );
+ default = { };
+ description = "Instances of SimpleSAMLphp. This module is designed to work with already existing PHP-FPM pool and NGINX virtualHost.";
+ };
+
+ config = {
+ services.phpfpm.pools = lib.mapAttrs' (
+ phpfpmName: opts:
+ lib.nameValuePair opts.phpfpmPool { phpEnv.SIMPLESAMLPHP_CONFIG_DIR = "${generateConfig opts}"; }
+ ) cfg;
+
+ services.nginx.virtualHosts = lib.mapAttrs' (
+ phpfpmName: opts:
+ lib.nameValuePair opts.localDomain (
+ lib.mkIf opts.configureNginx {
+ locations."^~ /saml/" = {
+ alias = "${opts.package}/share/php/simplesamlphp/www/";
+ extraConfig = ''
+ location ~ ^(?<prefix>/saml)(?<phpfile>.+?\.php)(?<pathinfo>/.*)?$ {
+ include ${pkgs.nginx}/conf/fastcgi.conf;
+ fastcgi_split_path_info ^(.+\.php)(/.+)$;
+ fastcgi_pass unix:${config.services.phpfpm.pools.${phpfpmName}.socket};
+ fastcgi_intercept_errors on;
+ fastcgi_param SCRIPT_FILENAME $document_root$phpfile;
+ fastcgi_param SCRIPT_NAME /saml$phpfile;
+ fastcgi_param PATH_INFO $pathinfo if_not_empty;
+ }
+ '';
+ };
+ }
+ )
+ ) cfg;
+ };
+}