mirror of
https://github.com/yrutschle/sslh.git
synced 2025-04-14 08:07:14 +03:00
39 lines
1.0 KiB
INI
39 lines
1.0 KiB
INI
# Configuration file for testing (use both by sslh under
|
|
# test and the test script `t`)
|
|
|
|
verbose: true;
|
|
foreground: true;
|
|
inetd: false;
|
|
numeric: false;
|
|
transparent: false;
|
|
timeout: 4; # Probe test writes slowly
|
|
pidfile: "/tmp/sslh_test.pid";
|
|
|
|
syslog_facility: "auth";
|
|
|
|
|
|
# List of interfaces on which we should listen
|
|
# Options:
|
|
listen:
|
|
(
|
|
{ host: "localhost"; port: "8080"; keepalive: true; },
|
|
{ host: "localhost"; port: "8081"; keepalive: true; }
|
|
);
|
|
|
|
|
|
protocols:
|
|
(
|
|
{ name: "ssh"; host: "localhost"; port: "9000"; fork: true; },
|
|
{ name: "socks5"; host: "localhost"; port: "9001"; },
|
|
{ name: "http"; host: "localhost"; port: "9002"; },
|
|
{ name: "tinc"; host: "localhost"; port: "9005"; },
|
|
{ name: "openvpn"; host: "localhost"; port: "9004"; },
|
|
{ name: "ssl"; host: "localhost"; port: "9003"; },
|
|
{ name: "xmpp"; host: "localhost"; port: "9006"; },
|
|
{ name: "adb"; host: "localhost"; port: "9007"; },
|
|
{ name: "anyprot"; host: "localhost"; port: "9010"; }
|
|
);
|
|
|
|
on-timeout: "ssh";
|
|
|