diff options
Diffstat (limited to 'blabouncer.conf.example')
-rw-r--r-- | blabouncer.conf.example | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/blabouncer.conf.example b/blabouncer.conf.example index fbbf3ce..2fd3df0 100644 --- a/blabouncer.conf.example +++ b/blabouncer.conf.example @@ -1,8 +1,12 @@ # blabouncer configuration file +# # Entries must be in the form: # option name, space, equals sign, space, double quote, option value, double quote # e.g. # realname = "Mr Bla Bouncer" +# +# Shell expansion is not supported, so do not try and specify e.g. +# "~/.blabouncer/" or "%HOME/.blabouncer/", instead use "/home/foo/.blabouncer" nick = "blabounce" nick2 = "bbounce2" @@ -10,7 +14,7 @@ nick3 = "bbounce3" username = "bounceusr" realname = "Mr Bla Bouncer" -# Channels to automatically join (comma-separated list) +# Channels to automatically join (comma-separated list, defaults to none) #channels = "#blabouncer,#test" # How many seconds of replay log should be sent to connecting clients @@ -35,13 +39,13 @@ ircserver = "irc.blatech.net" # Real IRC server port ircserverport = "6697" -# Certificate file +# Certificate file (defaults to $HOME/.blabouncer/cert.pem) # If clienttls = "0" then this need not be set -certfile = "cert.pem" +#certfile = "/home/foo/.blabouncer/cert.pem" -# Certificate key file +# Certificate key file (defaults to $HOME/.blabouncer/key.pem) # If clienttls = "0" then this need not be set -keyfile = "key.pem" +#keyfile = "/home/foo/.blabouncer/key.pem" # Base directory (defaults to $HOME/.blabouncer/) # Things such as the logs directory will be placed below this |