services.stunnel.clients

NixOS option

Define the client configurations. By default, verifyChain and OCSPaia are enabled and CAFile is set to security.pki.caBundle. See “SERVICE-LEVEL OPTIONS” in stunnel(8).

type: attribute set of attribute set of (null or boolean or signed integer or string)
Default
{ }
Example
{
  foobar = {
    accept = "0.0.0.0:8080";
    connect = "nixos.org:443";
    verifyChain = false;
  };
}
declared in: nixos/modules/services/networking/stunnel.nixView source on NixOS/nixpkgs →