redis service: Listen on localhost by default. Fixes #100192.

All other database servers in NixOS also use this safe-by-default setting.
This commit is contained in:
Niklas Hambüchen
2020-11-08 01:15:33 +01:00
parent c0f4be6652
commit 169ab0b89f
2 changed files with 11 additions and 3 deletions
+6 -3
View File
@@ -87,9 +87,12 @@ in
bind = mkOption {
type = with types; nullOr str;
default = null; # All interfaces
description = "The IP interface to bind to.";
example = "127.0.0.1";
default = "127.0.0.1";
description = ''
The IP interface to bind to.
<literal>null</literal> means "all interfaces".
'';
example = "192.0.2.1";
};
unixSocket = mkOption {