summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIzorkin <izorkin@elven.pw>2021-03-24 13:13:47 +0300
committerIzorkin <izorkin@elven.pw>2021-04-03 19:07:27 +0300
commit86d8b31e00b267f0ed67798e966c16ef06faf9ba (patch)
tree7ebc1471d1722f0a4be10f5c88a5c405aef1f1ac
parent94fa194b9fb77ab953805e83ba80b5837499b96f (diff)
nixos/redis: add option unixSocketPerm
-rw-r--r--nixos/modules/services/databases/redis.nix10
-rw-r--r--nixos/tests/redis.nix2
2 files changed, 9 insertions, 3 deletions
diff --git a/nixos/modules/services/databases/redis.nix b/nixos/modules/services/databases/redis.nix
index 117e63662258..b5921a6dead2 100644
--- a/nixos/modules/services/databases/redis.nix
+++ b/nixos/modules/services/databases/redis.nix
@@ -88,6 +88,13 @@ in
example = "/run/redis/redis.sock";
};
+ unixSocketPerm = mkOption {
+ type = types.int;
+ default = 750;
+ description = "Change permissions for the socket";
+ example = 700;
+ };
+
logLevel = mkOption {
type = types.str;
default = "notice"; # debug, verbose, notice, warning
@@ -204,7 +211,6 @@ in
'';
example = literalExample ''
{
- unixsocketperm = "700";
loadmodule = [ "/path/to/my_module.so" "/path/to/other_module.so" ];
}
'';
@@ -256,7 +262,7 @@ in
slowlog-max-len = cfg.slowLogMaxLen;
}
(mkIf (cfg.bind != null) { bind = cfg.bind; })
- (mkIf (cfg.unixSocket != null) { unixsocket = cfg.unixSocket; })
+ (mkIf (cfg.unixSocket != null) { unixsocket = cfg.unixSocket; unixsocketperm = "${toString cfg.unixSocketPerm}"; })
(mkIf (cfg.slaveOf != null) { slaveof = "${cfg.slaveOf.ip} ${cfg.slaveOf.port}"; })
(mkIf (cfg.masterAuth != null) { masterauth = cfg.masterAuth; })
(mkIf (cfg.requirePass != null) { requirepass = cfg.requirePass; })
diff --git a/nixos/tests/redis.nix b/nixos/tests/redis.nix
index ca1715614359..79a7847414a9 100644
--- a/nixos/tests/redis.nix
+++ b/nixos/tests/redis.nix
@@ -17,7 +17,7 @@ in
services.redis.unixSocket = redisSocket;
# Allow access to the unix socket for the "redis" group.
- services.redis.settings.unixsocketperm = "770";
+ services.redis.unixSocketPerm = 770;
users.users."member" = {
createHome = false;