base/files/sslh.cfg

32 lines
891 B
INI

# Default Arch configuration
# You can find more examples in /usr/share/doc/sslh
verbose: false;
foreground: true;
inetd: false;
numeric: false;
transparent: false;
timeout: 2;
user: "sslh";
#pidfile: "/run/sslh.pid";
listen:
(
{ host: "::0"; port: "443"; },
{ host: "0.0.0.0"; port: "443"; },
);
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: "tls"; host: "localhost"; port: "8443"; probe: "builtin"; },
{ name: "tinc"; host: "localhost"; port: "655"; probe: "builtin"; },
{ name: "anyprot"; host: "localhost"; port: "8443"; probe: "builtin"; }
);
# vim:set ts=4 sw=4 et: