New sslh module.
This commit is contained in:
parent
b9cc04329b
commit
1439e72147
@ -285,6 +285,7 @@
|
|||||||
./services/networking/searx.nix
|
./services/networking/searx.nix
|
||||||
./services/networking/seeks.nix
|
./services/networking/seeks.nix
|
||||||
./services/networking/spiped.nix
|
./services/networking/spiped.nix
|
||||||
|
./services/networking/sslh.nix
|
||||||
./services/networking/ssh/lshd.nix
|
./services/networking/ssh/lshd.nix
|
||||||
./services/networking/ssh/sshd.nix
|
./services/networking/ssh/sshd.nix
|
||||||
./services/networking/strongswan.nix
|
./services/networking/strongswan.nix
|
||||||
|
83
nixos/modules/services/networking/sslh.nix
Normal file
83
nixos/modules/services/networking/sslh.nix
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.services.sslh;
|
||||||
|
configFile = pkgs.writeText "sslh.conf" ''
|
||||||
|
verbose: ${if cfg.verbose then "true" else "false"};
|
||||||
|
foreground: false;
|
||||||
|
inetd: false;
|
||||||
|
numeric: false;
|
||||||
|
transparent: false;
|
||||||
|
timeout: "${toString cfg.timeout}";
|
||||||
|
user: "nobody";
|
||||||
|
pidfile: "/run/sslh.pid";
|
||||||
|
|
||||||
|
listen:
|
||||||
|
(
|
||||||
|
{ host: "${cfg.host}"; port: "${toString cfg.port}"; }
|
||||||
|
);
|
||||||
|
|
||||||
|
${cfg.appendConfig}
|
||||||
|
'';
|
||||||
|
defaultAppendConfig = ''
|
||||||
|
protocols:
|
||||||
|
(
|
||||||
|
{ name: "ssh"; service: "ssh"; host: "localhost"; port: "22"; probe: "builtin"; },
|
||||||
|
{ name: "openvpn"; host: "localhost"; port: "1194"; probe: "builtin"; },
|
||||||
|
{ name: "xmpp"; host: "localhost"; port: "5222"; probe: "builtin"; },
|
||||||
|
{ name: "http"; host: "localhost"; port: "80"; probe: "builtin"; },
|
||||||
|
{ name: "ssl"; host: "localhost"; port: "443"; probe: "builtin"; },
|
||||||
|
{ name: "anyprot"; host: "localhost"; port: "443"; probe: "builtin"; }
|
||||||
|
);
|
||||||
|
'';
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options = {
|
||||||
|
services.sslh = {
|
||||||
|
enable = mkEnableOption "sslh";
|
||||||
|
|
||||||
|
verbose = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = "Verbose logs.";
|
||||||
|
};
|
||||||
|
|
||||||
|
timeout = mkOption {
|
||||||
|
type = types.int;
|
||||||
|
default = 2;
|
||||||
|
description = "Timeout in seconds.";
|
||||||
|
};
|
||||||
|
|
||||||
|
host = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = config.networking.hostName;
|
||||||
|
description = "Listening hostname.";
|
||||||
|
};
|
||||||
|
|
||||||
|
port = mkOption {
|
||||||
|
type = types.int;
|
||||||
|
default = 443;
|
||||||
|
description = "Listening port.";
|
||||||
|
};
|
||||||
|
|
||||||
|
appendConfig = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = defaultAppendConfig;
|
||||||
|
description = "Verbatim configuration file.";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
systemd.services.sslh = {
|
||||||
|
description = "Applicative Protocol Multiplexer (e.g. share SSH and HTTPS on the same port)";
|
||||||
|
after = [ "network.target" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
serviceConfig.ExecStart = "${pkgs.sslh}/bin/sslh -F ${configFile}";
|
||||||
|
serviceConfig.KillMode = "process";
|
||||||
|
serviceConfig.PIDFile = "/run/sslh.pid";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
27
pkgs/servers/sslh/default.nix
Normal file
27
pkgs/servers/sslh/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, fetchurl, libcap, libconfig, perl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "sslh-${version}";
|
||||||
|
version = "1.16";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/yrutschle/sslh/archive/v${version}.tar.gz";
|
||||||
|
sha256 = "0xwi2bflvq4phrqjic84xch20jkg3wdys219mw2cy23sjkzk63mb";
|
||||||
|
};
|
||||||
|
|
||||||
|
postPatch = "patchShebangs *.sh";
|
||||||
|
|
||||||
|
buildInputs = [ libcap libconfig perl ];
|
||||||
|
|
||||||
|
makeFlags = "USELIBCAP=1";
|
||||||
|
|
||||||
|
installFlags = "PREFIX=$(out)";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Applicative Protocol Multiplexer (e.g. share SSH and HTTPS on the same port)";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
homepage = http://www.rutschle.net/tech/sslh.shtml;
|
||||||
|
maintainers = [ maintainers.koral ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
@ -8196,6 +8196,8 @@ let
|
|||||||
});
|
});
|
||||||
squid = squids.squid31; # has ipv6 support
|
squid = squids.squid31; # has ipv6 support
|
||||||
|
|
||||||
|
sslh = callPackage ../servers/sslh { };
|
||||||
|
|
||||||
thttpd = callPackage ../servers/http/thttpd { };
|
thttpd = callPackage ../servers/http/thttpd { };
|
||||||
|
|
||||||
storm = callPackage ../servers/computing/storm { };
|
storm = callPackage ../servers/computing/storm { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user