diff options
author | Luke Bratch <luke@bratch.co.uk> | 2019-05-13 00:07:15 +0100 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2019-05-13 00:07:15 +0100 |
commit | 216f6a152333b38a8563c570eb237c27585deedb (patch) | |
tree | 1d376e9c40dcea8d1ed09213ebe820a8e761ea13 /blabouncer.conf | |
parent | 8869477885718844d368b48774f926489385e3b3 (diff) |
Implement optional TLS for the server side.
Diffstat (limited to 'blabouncer.conf')
-rw-r--r-- | blabouncer.conf | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/blabouncer.conf b/blabouncer.conf index 72646de..d90d35b 100644 --- a/blabouncer.conf +++ b/blabouncer.conf @@ -21,11 +21,14 @@ clientport = "1234" # If "0" then certfile and keyfile need not be set clienttls = "1" +# Enable TLS for the bouncer connecting to the IRC server ("1" for yes or "0" for no) +servertls = "1" + # Real IRC server the bouncer connects to ircserver = "irc.blatech.net" # Real IRC server port -ircserverport = "6667" +ircserverport = "6697" # Certificate file # If clienttls = "0" then this need not be set |