123456789101112131415161718192021222324252627282930313233343536 |
- ; Certificate/key is needed in server mode and optional in client mode
- ; The default certificate is provided only for testing and should not
- ; be used in a production environment
- cert = stunnel.pem
- ;key = stunnel.pem
- ; Some performance tunings
- socket = l:TCP_NODELAY=1
- socket = r:TCP_NODELAY=1
- ; Use it for client mode?
- client = no
- ;only useful if we don't use vnc compression??
- ;compression=zlib
- ;output log
- output=stunnel.log
- ;taskbar icon for helper
- taskbar = yes
- ; Service-level configuration
- [vncclient]
- client = no
- ; port we're listening on:
- accept = $(HELPERSERVERPORT)
- ; forward that to:
- connect = 127.0.0.1:65001
- client = no
- sslVersion = TLSv1
- ciphers = AES256-SHA:AES128-SHA:IDEA-CBC-MD5
- ;DES-CBC3-SHA is slow
- ;don't use hosts.allow
- ;won't work on windows
- ;libwrap = no
- TIMEOUTconnect = 60
- TIMEOUTidle = 60
|