mirror of
https://github.com/yrutschle/sslh.git
synced 2025-04-04 19:30:04 +03:00
35 lines
971 B
INI
35 lines
971 B
INI
# This is a basic configuration file that should provide
|
|
# sensible values for "standard" setup.
|
|
|
|
# You will find extensive examples with explanations in
|
|
# example.cfg
|
|
|
|
timeout: 2;
|
|
user: "nobody";
|
|
pidfile: "/var/run/sslh.pid";
|
|
|
|
|
|
# Change hostname with your external address name, or the IP
|
|
# of the interface that receives connections
|
|
# Default is to bind all interfaces. httpd can be started
|
|
# first to bind on localhost, in which case sslh will bind
|
|
# only other interfaces.
|
|
listen:
|
|
(
|
|
{ host: "0.0.0.0"; port: "443"; },
|
|
{ host: "[::]"; port: "443"; }
|
|
);
|
|
|
|
|
|
# Change to the protocols you want to forward to. The
|
|
# defaults here are sensible for services running on
|
|
# localhost
|
|
protocols:
|
|
(
|
|
{ name: "ssh"; service: "ssh"; host: "localhost"; port: "22"; fork: true; },
|
|
{ name: "openvpn"; host: "localhost"; port: "1194"; },
|
|
{ name: "tls"; host: "localhost"; port: "443"; log_level: 0; },
|
|
{ name: "anyprot"; host: "localhost"; port: "443"; }
|
|
);
|
|
|