1 { config, lib, pkgs, ... }: with lib; let
2 cfg = config.services.icingaweb2;
3 fpm = config.services.phpfpm.pools.${poolName};
4 poolName = "icingaweb2";
8 module_path = "${pkgs.icingaweb2}/modules";
12 meta.maintainers = with maintainers; [ das_j ];
14 options.services.icingaweb2 = with types; {
15 enable = mkEnableOption "the icingaweb2 web interface";
21 Name of existing PHP-FPM pool that is used to run Icingaweb2.
22 If not specified, a pool will automatically created with default values.
26 libraryPaths = mkOption {
27 type = attrsOf package;
30 Libraries to add to the Icingaweb2 library path.
31 The name of the attribute is the name of the library, the value
32 is the package to add.
36 virtualHost = mkOption {
38 default = "icingaweb2";
40 Name of the nginx virtualhost to use and setup. If null, no virtualhost is set up.
47 example = "Europe/Berlin";
48 description = "PHP-compliant timezone specification";
52 doc.enable = mkEnableOption "the icingaweb2 doc module";
53 migrate.enable = mkEnableOption "the icingaweb2 migrate module";
54 setup.enable = mkEnableOption "the icingaweb2 setup module";
55 test.enable = mkEnableOption "the icingaweb2 test module";
56 translation.enable = mkEnableOption "the icingaweb2 translation module";
59 modulePackages = mkOption {
60 type = attrsOf package;
62 example = literalExpression ''
64 "snow" = icingaweb2Modules.theme-snow;
68 Name-package attrset of Icingaweb 2 modules packages to enable.
70 If you enable modules manually (e.g. via the web ui), they will not be touched.
74 generalConfig = mkOption {
80 config_resource = "icingaweb_db";
89 Will automatically be converted to a .ini file.
90 If you don't set global.module_path, the module will take care of it.
92 If the value is null, no config.ini is created and you can
93 modify it manually (e.g. via the web interface).
94 Note that you need to update module_path manually.
98 resources = mkOption {
106 username = "icingaweb2";
107 password = "icingaweb2";
108 dbname = "icingaweb2";
112 resources.ini contents.
113 Will automatically be converted to a .ini file.
115 If the value is null, no resources.ini is created and you can
116 modify it manually (e.g. via the web interface).
117 Note that if you set passwords here, they will go into the nix store.
121 authentications = mkOption {
127 resource = "icingaweb_db";
131 authentication.ini contents.
132 Will automatically be converted to a .ini file.
134 If the value is null, no authentication.ini is created and you can
135 modify it manually (e.g. via the web interface).
139 groupBackends = mkOption {
145 resource = "icingaweb_db";
150 Will automatically be converted to a .ini file.
152 If the value is null, no groups.ini is created and you can
153 modify it manually (e.g. via the web interface).
168 Will automatically be converted to a .ini file.
170 If the value is null, no roles.ini is created and you can
171 modify it manually (e.g. via the web interface).
176 config = mkIf cfg.enable {
177 services.phpfpm.pools = mkIf (cfg.pool == "${poolName}") {
181 ICINGAWEB_LIBDIR = toString (pkgs.linkFarm "icingaweb2-libdir" (mapAttrsToList (name: path: { inherit name path; }) cfg.libraryPaths));
183 phpPackage = pkgs.php.withExtensions ({ enabled, all }: [ all.imagick ] ++ enabled);
185 date.timezone = "${cfg.timezone}"
187 settings = mapAttrs (name: mkDefault) {
188 "listen.owner" = "nginx";
189 "listen.group" = "nginx";
190 "listen.mode" = "0600";
192 "pm.max_children" = 75;
193 "pm.start_servers" = 2;
194 "pm.min_spare_servers" = 2;
195 "pm.max_spare_servers" = 10;
200 services.icingaweb2.libraryPaths = {
201 ipl = pkgs.icingaweb2-ipl;
202 thirdparty = pkgs.icingaweb2-thirdparty;
205 systemd.services."phpfpm-${poolName}".serviceConfig.ReadWritePaths = [ "/etc/icingaweb2" ];
209 virtualHosts = mkIf (cfg.virtualHost != null) {
210 ${cfg.virtualHost} = {
211 root = "${pkgs.icingaweb2}/public";
215 try_files $1 $uri $uri/ /index.php$is_args$args;
218 locations."~ ..*/.*.php$".extraConfig = ''
222 locations."~ ^/index.php(.*)$".extraConfig = ''
223 fastcgi_intercept_errors on;
224 fastcgi_index index.php;
225 include ${config.services.nginx.package}/conf/fastcgi.conf;
227 fastcgi_split_path_info ^(.+\.php)(/.+)$;
228 fastcgi_pass unix:${fpm.socket};
229 fastcgi_param SCRIPT_FILENAME ${pkgs.icingaweb2}/public/index.php;
236 environment.etc = let
237 doModule = name: optionalAttrs (cfg.modules.${name}.enable) { "icingaweb2/enabledModules/${name}".source = "${pkgs.icingaweb2}/modules/${name}"; };
240 // (mapAttrs' (k: v: nameValuePair "icingaweb2/enabledModules/${k}" { source = v; }) cfg.modulePackages)
243 // doModule "migrate"
246 // doModule "translation"
248 // optionalAttrs (cfg.generalConfig != null) { "icingaweb2/config.ini".text = generators.toINI {} (defaultConfig // cfg.generalConfig); }
249 // optionalAttrs (cfg.resources != null) { "icingaweb2/resources.ini".text = generators.toINI {} cfg.resources; }
250 // optionalAttrs (cfg.authentications != null) { "icingaweb2/authentication.ini".text = generators.toINI {} cfg.authentications; }
251 // optionalAttrs (cfg.groupBackends != null) { "icingaweb2/groups.ini".text = generators.toINI {} cfg.groupBackends; }
252 // optionalAttrs (cfg.roles != null) { "icingaweb2/roles.ini".text = generators.toINI {} cfg.roles; };
255 users.groups.icingaweb2 = {};
256 users.users.icingaweb2 = {
257 description = "Icingaweb2 service user";
258 group = "icingaweb2";