diff options
author | Luke Bratch <luke@bratch.co.uk> | 2019-05-12 22:47:29 +0100 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2019-05-12 22:47:29 +0100 |
commit | 8869477885718844d368b48774f926489385e3b3 (patch) | |
tree | c08db28e2933eb5204d8a807f814572e3d617cb3 /blabouncer.conf | |
parent | cceee6b8e23138e5a16e6aef23759a8c60ef872e (diff) |
Make using TLS for clients connecting to the bouncer optional.
Diffstat (limited to 'blabouncer.conf')
-rw-r--r-- | blabouncer.conf | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/blabouncer.conf b/blabouncer.conf index 3428960..72646de 100644 --- a/blabouncer.conf +++ b/blabouncer.conf @@ -17,6 +17,10 @@ password = "bananas" # Port the bouncer should listen on clientport = "1234" +# Enable TLS for clients connecting to the bouncer ("1" for yes or "0" for no) +# If "0" then certfile and keyfile need not be set +clienttls = "1" + # Real IRC server the bouncer connects to ircserver = "irc.blatech.net" @@ -24,7 +28,9 @@ ircserver = "irc.blatech.net" ircserverport = "6667" # Certificate file +# If clienttls = "0" then this need not be set certfile = "cert.pem" # Certificate key file +# If clienttls = "0" then this need not be set keyfile = "key.pem" |