aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/nixos/modules/services/networking/sslh.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/nixos/modules/services/networking/sslh.nix')
-rw-r--r--nixpkgs/nixos/modules/services/networking/sslh.nix18
1 files changed, 13 insertions, 5 deletions
diff --git a/nixpkgs/nixos/modules/services/networking/sslh.nix b/nixpkgs/nixos/modules/services/networking/sslh.nix
index c4fa370a5fe..0921febba66 100644
--- a/nixpkgs/nixos/modules/services/networking/sslh.nix
+++ b/nixpkgs/nixos/modules/services/networking/sslh.nix
@@ -15,7 +15,11 @@ let
listen:
(
- { host: "${cfg.listenAddress}"; port: "${toString cfg.port}"; }
+ ${
+ concatMapStringsSep ",\n"
+ (addr: ''{ host: "${addr}"; port: "${toString cfg.port}"; }'')
+ cfg.listenAddresses
+ }
);
${cfg.appendConfig}
@@ -33,6 +37,10 @@ let
'';
in
{
+ imports = [
+ (mkRenamedOptionModule [ "services" "sslh" "listenAddress" ] [ "services" "sslh" "listenAddresses" ])
+ ];
+
options = {
services.sslh = {
enable = mkEnableOption "sslh";
@@ -55,10 +63,10 @@ in
description = "Will the services behind sslh (Apache, sshd and so on) see the external IP and ports as if the external world connected directly to them";
};
- listenAddress = mkOption {
- type = types.str;
- default = "0.0.0.0";
- description = "Listening address or hostname.";
+ listenAddresses = mkOption {
+ type = types.coercedTo types.str singleton (types.listOf types.str);
+ default = [ "0.0.0.0" "[::]" ];
+ description = "Listening addresses or hostnames.";
};
port = mkOption {