aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/nixos/modules/services/networking/stunnel.nix
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-12-09 18:55:19 +0000
committerMx Kookie <kookie@spacekookie.de>2020-12-09 18:55:19 +0000
commit80d90d9b204f7c17912740f9f414fe5d59f293ba (patch)
tree5f2065a06e724270610760d59d01c6888b375a46 /infra/libkookie/nixpkgs/nixos/modules/services/networking/stunnel.nix
parent3a31a84c7d3e589035ad08499206aac44a81f424 (diff)
parent83cbad92d73216bb0d9187c56cce0b91f9121d5a (diff)
Merge commit '83cbad92d73216bb0d9187c56cce0b91f9121d5a' into main
Diffstat (limited to 'infra/libkookie/nixpkgs/nixos/modules/services/networking/stunnel.nix')
-rw-r--r--infra/libkookie/nixpkgs/nixos/modules/services/networking/stunnel.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/infra/libkookie/nixpkgs/nixos/modules/services/networking/stunnel.nix b/infra/libkookie/nixpkgs/nixos/modules/services/networking/stunnel.nix
index ab51bba2f6ac..fe1616f411f0 100644
--- a/infra/libkookie/nixpkgs/nixos/modules/services/networking/stunnel.nix
+++ b/infra/libkookie/nixpkgs/nixos/modules/services/networking/stunnel.nix
@@ -16,8 +16,12 @@ let
serverConfig = {
options = {
accept = mkOption {
- type = types.int;
- description = "On which port stunnel should listen for incoming TLS connections.";
+ type = types.either types.str types.int;
+ description = ''
+ On which [host:]port stunnel should listen for incoming TLS connections.
+ Note that unlike other softwares stunnel ipv6 address need no brackets,
+ so to listen on all IPv6 addresses on port 1234 one would use ':::1234'.
+ '';
};
connect = mkOption {
@@ -129,7 +133,6 @@ in
type = with types; attrsOf (submodule serverConfig);
example = {
fancyWebserver = {
- enable = true;
accept = 443;
connect = 8080;
cert = "/path/to/pem/file";