mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-27 07:14:52 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
244 lines
7.5 KiB
Nix
244 lines
7.5 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.services.rabbitmq;
|
|
|
|
inherit (builtins) concatStringsSep;
|
|
|
|
config_file_content = lib.generators.toKeyValue { } cfg.configItems;
|
|
config_file = pkgs.writeText "rabbitmq.conf" config_file_content;
|
|
|
|
advanced_config_file = pkgs.writeText "advanced.config" cfg.config;
|
|
|
|
in
|
|
{
|
|
|
|
imports = [
|
|
(lib.mkRemovedOptionModule [ "services" "rabbitmq" "cookie" ] ''
|
|
This option wrote the Erlang cookie to the store, while it should be kept secret.
|
|
Please remove it from your NixOS configuration and deploy a cookie securely instead.
|
|
The renamed `unsafeCookie` must ONLY be used in isolated non-production environments such as NixOS VM tests.
|
|
'')
|
|
];
|
|
|
|
###### interface
|
|
options = {
|
|
services.rabbitmq = {
|
|
enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether to enable the RabbitMQ server, an Advanced Message
|
|
Queuing Protocol (AMQP) broker.
|
|
'';
|
|
};
|
|
|
|
package = lib.mkPackageOption pkgs "rabbitmq-server" { };
|
|
|
|
listenAddress = lib.mkOption {
|
|
default = "127.0.0.1";
|
|
example = "";
|
|
description = ''
|
|
IP address on which RabbitMQ will listen for AMQP
|
|
connections. Set to the empty string to listen on all
|
|
interfaces. Note that RabbitMQ creates a user named
|
|
`guest` with password
|
|
`guest` by default, so you should delete
|
|
this user if you intend to allow external access.
|
|
|
|
Together with 'port' setting it's mostly an alias for
|
|
configItems."listeners.tcp.1" and it's left for backwards
|
|
compatibility with previous version of this module.
|
|
'';
|
|
type = lib.types.str;
|
|
};
|
|
|
|
port = lib.mkOption {
|
|
default = 5672;
|
|
description = ''
|
|
Port on which RabbitMQ will listen for AMQP connections.
|
|
'';
|
|
type = lib.types.port;
|
|
};
|
|
|
|
dataDir = lib.mkOption {
|
|
type = lib.types.path;
|
|
default = "/var/lib/rabbitmq";
|
|
description = ''
|
|
Data directory for rabbitmq.
|
|
'';
|
|
};
|
|
|
|
unsafeCookie = lib.mkOption {
|
|
default = "";
|
|
type = lib.types.str;
|
|
description = ''
|
|
Erlang cookie is a string of arbitrary length which must
|
|
be the same for several nodes to be allowed to communicate.
|
|
Leave empty to generate automatically.
|
|
|
|
Setting the cookie via this option exposes the cookie to the store, which
|
|
is not recommended for security reasons.
|
|
Only use this option in an isolated non-production environment such as
|
|
NixOS VM tests.
|
|
'';
|
|
};
|
|
|
|
configItems = lib.mkOption {
|
|
default = { };
|
|
type = lib.types.attrsOf lib.types.str;
|
|
example = lib.literalExpression ''
|
|
{
|
|
"auth_backends.1.authn" = "rabbit_auth_backend_ldap";
|
|
"auth_backends.1.authz" = "rabbit_auth_backend_internal";
|
|
}
|
|
'';
|
|
description = ''
|
|
Configuration options in RabbitMQ's new config file format,
|
|
which is a simple key-value format that can not express nested
|
|
data structures. This is known as the `rabbitmq.conf` file,
|
|
although outside NixOS that filename may have Erlang syntax, particularly
|
|
prior to RabbitMQ 3.7.0.
|
|
|
|
If you do need to express nested data structures, you can use
|
|
`config` option. Configuration from `config`
|
|
will be merged into these options by RabbitMQ at runtime to
|
|
form the final configuration.
|
|
|
|
See https://www.rabbitmq.com/configure.html#config-items
|
|
For the distinct formats, see https://www.rabbitmq.com/configure.html#config-file-formats
|
|
'';
|
|
};
|
|
|
|
config = lib.mkOption {
|
|
default = "";
|
|
type = lib.types.str;
|
|
description = ''
|
|
Verbatim advanced configuration file contents using the Erlang syntax.
|
|
This is also known as the `advanced.config` file or the old config format.
|
|
|
|
`configItems` is preferred whenever possible. However, nested
|
|
data structures can only be expressed properly using the `config` option.
|
|
|
|
The contents of this option will be merged into the `configItems`
|
|
by RabbitMQ at runtime to form the final configuration.
|
|
|
|
See the second table on https://www.rabbitmq.com/configure.html#config-items
|
|
For the distinct formats, see https://www.rabbitmq.com/configure.html#config-file-formats
|
|
'';
|
|
};
|
|
|
|
plugins = lib.mkOption {
|
|
default = [ ];
|
|
type = lib.types.listOf lib.types.str;
|
|
description = "The names of plugins to enable";
|
|
};
|
|
|
|
pluginDirs = lib.mkOption {
|
|
default = [ ];
|
|
type = lib.types.listOf lib.types.path;
|
|
description = "The list of directories containing external plugins";
|
|
};
|
|
|
|
managementPlugin = {
|
|
enable = lib.mkEnableOption "the management plugin";
|
|
port = lib.mkOption {
|
|
default = 15672;
|
|
type = lib.types.port;
|
|
description = ''
|
|
On which port to run the management plugin
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
# This is needed so we will have 'rabbitmqctl' in our PATH
|
|
environment.systemPackages = [ cfg.package ];
|
|
|
|
services.epmd.enable = true;
|
|
|
|
users.users.rabbitmq = {
|
|
description = "RabbitMQ server user";
|
|
home = "${cfg.dataDir}";
|
|
createHome = true;
|
|
group = "rabbitmq";
|
|
uid = config.ids.uids.rabbitmq;
|
|
};
|
|
|
|
users.groups.rabbitmq.gid = config.ids.gids.rabbitmq;
|
|
|
|
services.rabbitmq.configItems =
|
|
{
|
|
"listeners.tcp.1" = lib.mkDefault "${cfg.listenAddress}:${toString cfg.port}";
|
|
}
|
|
// lib.optionalAttrs cfg.managementPlugin.enable {
|
|
"management.tcp.port" = toString cfg.managementPlugin.port;
|
|
"management.tcp.ip" = cfg.listenAddress;
|
|
};
|
|
|
|
services.rabbitmq.plugins = lib.optional cfg.managementPlugin.enable "rabbitmq_management";
|
|
|
|
systemd.services.rabbitmq = {
|
|
description = "RabbitMQ Server";
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [
|
|
"network.target"
|
|
"epmd.socket"
|
|
];
|
|
wants = [
|
|
"network.target"
|
|
"epmd.socket"
|
|
];
|
|
|
|
path = [
|
|
cfg.package
|
|
pkgs.coreutils # mkdir/chown/chmod for preStart
|
|
];
|
|
|
|
environment = {
|
|
RABBITMQ_MNESIA_BASE = "${cfg.dataDir}/mnesia";
|
|
RABBITMQ_LOGS = "-";
|
|
SYS_PREFIX = "";
|
|
RABBITMQ_CONFIG_FILE = config_file;
|
|
RABBITMQ_PLUGINS_DIR = lib.concatStringsSep ":" cfg.pluginDirs;
|
|
RABBITMQ_ENABLED_PLUGINS_FILE = pkgs.writeText "enabled_plugins" ''
|
|
[ ${lib.concatStringsSep "," cfg.plugins} ].
|
|
'';
|
|
} // lib.optionalAttrs (cfg.config != "") { RABBITMQ_ADVANCED_CONFIG_FILE = advanced_config_file; };
|
|
|
|
serviceConfig = {
|
|
ExecStart = "${cfg.package}/sbin/rabbitmq-server";
|
|
ExecStop = "${cfg.package}/sbin/rabbitmqctl shutdown";
|
|
User = "rabbitmq";
|
|
Group = "rabbitmq";
|
|
LogsDirectory = "rabbitmq";
|
|
WorkingDirectory = cfg.dataDir;
|
|
Type = "notify";
|
|
NotifyAccess = "all";
|
|
UMask = "0027";
|
|
LimitNOFILE = "100000";
|
|
Restart = "on-failure";
|
|
RestartSec = "10";
|
|
TimeoutStartSec = "3600";
|
|
};
|
|
|
|
preStart = ''
|
|
${lib.optionalString (cfg.unsafeCookie != "") ''
|
|
install -m 600 <(echo -n ${cfg.unsafeCookie}) ${cfg.dataDir}/.erlang.cookie
|
|
''}
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
}
|