2014-11-24 21:39:36 +01:00
|
|
|
{ config, lib, pkgs, utils, ... }:
|
2014-08-05 23:00:30 +02:00
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.unifi;
|
|
|
|
stateDir = "/var/lib/unifi";
|
2017-06-26 13:15:03 +02:00
|
|
|
cmd = ''
|
2018-03-25 22:49:54 +02:00
|
|
|
@${cfg.jrePackage}/bin/java java \
|
2017-06-26 13:15:03 +02:00
|
|
|
${optionalString (cfg.initialJavaHeapSize != null) "-Xms${(toString cfg.initialJavaHeapSize)}m"} \
|
|
|
|
${optionalString (cfg.maximumJavaHeapSize != null) "-Xmx${(toString cfg.maximumJavaHeapSize)}m"} \
|
|
|
|
-jar ${stateDir}/lib/ace.jar
|
|
|
|
'';
|
2014-11-24 21:39:36 +01:00
|
|
|
mountPoints = [
|
|
|
|
{
|
2018-03-25 22:49:54 +02:00
|
|
|
what = "${cfg.unifiPackage}/dl";
|
2014-11-24 21:39:36 +01:00
|
|
|
where = "${stateDir}/dl";
|
|
|
|
}
|
|
|
|
{
|
2018-03-25 22:49:54 +02:00
|
|
|
what = "${cfg.unifiPackage}/lib";
|
2014-11-24 21:39:36 +01:00
|
|
|
where = "${stateDir}/lib";
|
|
|
|
}
|
|
|
|
{
|
2018-03-25 22:49:54 +02:00
|
|
|
what = "${cfg.mongodbPackage}/bin";
|
2014-11-24 21:39:36 +01:00
|
|
|
where = "${stateDir}/bin";
|
|
|
|
}
|
2016-04-23 07:43:55 +02:00
|
|
|
{
|
|
|
|
what = "${cfg.dataDir}";
|
|
|
|
where = "${stateDir}/data";
|
|
|
|
}
|
2014-11-24 21:39:36 +01:00
|
|
|
];
|
|
|
|
systemdMountPoints = map (m: "${utils.escapeSystemdPath m.where}.mount") mountPoints;
|
2014-08-05 23:00:30 +02:00
|
|
|
in
|
|
|
|
{
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
services.unifi.enable = mkOption {
|
2015-06-15 18:10:26 +02:00
|
|
|
type = types.bool;
|
2014-08-05 23:00:30 +02:00
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether or not to enable the unifi controller service.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2018-03-25 22:49:54 +02:00
|
|
|
services.unifi.jrePackage = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.jre8;
|
|
|
|
defaultText = "pkgs.jre8";
|
|
|
|
description = ''
|
|
|
|
The JRE package to use. Check the release notes to ensure it is supported.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
services.unifi.unifiPackage = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.unifiLTS;
|
|
|
|
defaultText = "pkgs.unifiLTS";
|
|
|
|
description = ''
|
|
|
|
The unifi package to use.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
services.unifi.mongodbPackage = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.mongodb;
|
|
|
|
defaultText = "pkgs.mongodb";
|
|
|
|
description = ''
|
|
|
|
The mongodb package to use.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2016-04-23 07:43:55 +02:00
|
|
|
services.unifi.dataDir = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "${stateDir}/data";
|
|
|
|
description = ''
|
|
|
|
Where to store the database and other data.
|
|
|
|
|
|
|
|
This directory will be bind-mounted to ${stateDir}/data as part of the service startup.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2016-08-16 21:42:57 +02:00
|
|
|
services.unifi.openPorts = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
|
|
|
Whether or not to open the minimum required ports on the firewall.
|
|
|
|
|
|
|
|
This is necessary to allow firmware upgrades and device discovery to
|
|
|
|
work. For remote login, you should additionally open (or forward) port
|
|
|
|
8443.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-06-26 13:15:03 +02:00
|
|
|
services.unifi.initialJavaHeapSize = mkOption {
|
|
|
|
type = types.nullOr types.int;
|
|
|
|
default = null;
|
|
|
|
example = 1024;
|
|
|
|
description = ''
|
|
|
|
Set the initial heap size for the JVM in MB. If this option isn't set, the
|
|
|
|
JVM will decide this value at runtime.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
services.unifi.maximumJavaHeapSize = mkOption {
|
|
|
|
type = types.nullOr types.int;
|
|
|
|
default = null;
|
|
|
|
example = 4096;
|
|
|
|
description = ''
|
|
|
|
Set the maximimum heap size for the JVM in MB. If this option isn't set, the
|
|
|
|
JVM will decide this value at runtime.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2014-08-05 23:00:30 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
2018-06-30 01:58:35 +02:00
|
|
|
users.users.unifi = {
|
2014-08-05 23:00:30 +02:00
|
|
|
uid = config.ids.uids.unifi;
|
|
|
|
description = "UniFi controller daemon user";
|
|
|
|
home = "${stateDir}";
|
|
|
|
};
|
|
|
|
|
2016-08-16 21:42:57 +02:00
|
|
|
networking.firewall = mkIf cfg.openPorts {
|
2019-02-07 22:17:57 +01:00
|
|
|
# https://help.ubnt.com/hc/en-us/articles/218506997
|
2016-08-16 21:42:57 +02:00
|
|
|
allowedTCPPorts = [
|
|
|
|
8080 # Port for UAP to inform controller.
|
|
|
|
8880 # Port for HTTP portal redirect, if guest portal is enabled.
|
|
|
|
8843 # Port for HTTPS portal redirect, ditto.
|
2019-02-07 22:17:57 +01:00
|
|
|
6789 # Port for UniFi mobile speed test.
|
2016-08-16 21:42:57 +02:00
|
|
|
];
|
|
|
|
allowedUDPPorts = [
|
|
|
|
3478 # UDP port used for STUN.
|
|
|
|
10001 # UDP port used for device discovery.
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2014-08-06 06:15:49 +02:00
|
|
|
# We must create the binary directories as bind mounts instead of symlinks
|
|
|
|
# This is because the controller resolves all symlinks to absolute paths
|
|
|
|
# to be used as the working directory.
|
|
|
|
systemd.mounts = map ({ what, where }: {
|
2014-08-06 05:09:15 +02:00
|
|
|
bindsTo = [ "unifi.service" ];
|
2014-11-24 21:39:36 +01:00
|
|
|
partOf = [ "unifi.service" ];
|
2014-12-05 21:11:47 +01:00
|
|
|
unitConfig.RequiresMountsFor = stateDir;
|
2014-08-05 23:00:30 +02:00
|
|
|
options = "bind";
|
2014-08-06 06:15:49 +02:00
|
|
|
what = what;
|
|
|
|
where = where;
|
2014-11-24 21:39:36 +01:00
|
|
|
}) mountPoints;
|
2014-08-05 23:00:30 +02:00
|
|
|
|
2019-02-24 13:57:19 +01:00
|
|
|
systemd.tmpfiles.rules = [
|
2020-01-24 16:06:29 +01:00
|
|
|
"d '${stateDir}' 0700 unifi - - -"
|
2019-08-05 15:00:03 +02:00
|
|
|
"d '${stateDir}/data' 0700 unifi - - -"
|
2020-01-24 16:06:29 +01:00
|
|
|
"d '${stateDir}/webapps' 0700 unifi - - -"
|
|
|
|
"L+ '${stateDir}/webapps/ROOT' - - - - ${cfg.unifiPackage}/webapps/ROOT"
|
2019-02-24 13:57:19 +01:00
|
|
|
];
|
|
|
|
|
2014-08-05 23:00:30 +02:00
|
|
|
systemd.services.unifi = {
|
|
|
|
description = "UniFi controller daemon";
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
2014-11-24 21:39:36 +01:00
|
|
|
after = [ "network.target" ] ++ systemdMountPoints;
|
|
|
|
partOf = systemdMountPoints;
|
|
|
|
bindsTo = systemdMountPoints;
|
2014-12-05 21:11:47 +01:00
|
|
|
unitConfig.RequiresMountsFor = stateDir;
|
2016-02-11 17:44:00 +01:00
|
|
|
# This a HACK to fix missing dependencies of dynamic libs extracted from jars
|
2016-04-23 07:39:28 +02:00
|
|
|
environment.LD_LIBRARY_PATH = with pkgs.stdenv; "${cc.cc.lib}/lib";
|
2020-05-15 13:41:19 +02:00
|
|
|
# Make sure package upgrades trigger a service restart
|
|
|
|
restartTriggers = [ cfg.unifiPackage cfg.mongodbPackage ];
|
2014-08-05 23:00:30 +02:00
|
|
|
|
|
|
|
serviceConfig = {
|
|
|
|
Type = "simple";
|
2017-06-26 13:15:03 +02:00
|
|
|
ExecStart = "${(removeSuffix "\n" cmd)} start";
|
|
|
|
ExecStop = "${(removeSuffix "\n" cmd)} stop";
|
2019-08-26 02:22:03 +02:00
|
|
|
Restart = "on-failure";
|
2014-08-05 23:00:30 +02:00
|
|
|
User = "unifi";
|
|
|
|
UMask = "0077";
|
|
|
|
WorkingDirectory = "${stateDir}";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2019-01-27 17:24:40 +01:00
|
|
|
meta.maintainers = with lib.maintainers; [ erictapen ];
|
2014-08-05 23:00:30 +02:00
|
|
|
}
|