wok-next diff sslh/stuff/sslh.conf @ rev 21724

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/sslh/stuff/sslh.conf	Tue Sep 01 11:04:25 2020 +0000
     1.3 @@ -0,0 +1,24 @@
     1.4 +verbose: false;
     1.5 +foreground: true;
     1.6 +inetd: false;
     1.7 +numeric: false;
     1.8 +transparent: false;
     1.9 +timeout: 2;
    1.10 +user: "nobody";
    1.11 +pidfile: "/var/run/sslh.pid";
    1.12 +
    1.13 +
    1.14 +listen:
    1.15 +(
    1.16 +    { host: "::0"; port: "443"; }
    1.17 +);
    1.18 +
    1.19 +protocols:
    1.20 +(
    1.21 +     { name: "ssh"; service: "ssh"; host: "localhost"; port: "22"; probe: "builtin"; },
    1.22 +     { name: "openvpn"; host: "localhost"; port: "1194"; probe: "builtin"; },
    1.23 +     { name: "xmpp"; host: "localhost"; port: "5222"; probe: "builtin"; },
    1.24 +     { name: "http"; host: "localhost"; port: "80"; probe: "builtin"; },
    1.25 +     { name: "ssl"; host: "localhost"; port: "8443"; probe: "builtin"; },
    1.26 +     { name: "anyprot"; host: "localhost"; port: "8443"; probe: "builtin"; }
    1.27 +);