services.stunnel.servers

NixOS option

Define the server configurations. See “SERVICE-LEVEL OPTIONS” in stunnel(8).

type: attribute set of attribute set of (null or boolean or signed integer or string)
Default
{ }
Example
{
  fancyWebserver = {
    accept = 443;
    cert = "/path/to/pem/file";
    connect = 8080;
  };
}
declared in: nixos/modules/services/networking/stunnel.nixView source on NixOS/nixpkgs →