blob: 5fec949a75ece36145beb8883dec03a990db2ed9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Configuration for /etc/init.d/sslh
# The sslh binary to run; one of:
#
# fork Forks a new process for each incoming connection. It is well-tested
# and very reliable, but incurs the overhead of many processes.
# select Uses only one thread, which monitors all connections at once. It is
# more recent and less tested, but has smaller overhead per connection.
#mode="fork"
# Path of the configuration file.
#cfgfile="/etc/sslh.conf"
# Additional options to pass to the sslh daemon. See sslh(1) man page.
#command_args=""
# Uncomment to run the sslh daemon under process supervisor.
#supervisor=supervise-daemon
|