diff options
author | Luke Bratch <luke@bratch.co.uk> | 2019-05-27 12:46:22 +0100 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2019-05-27 12:46:22 +0100 |
commit | 0b1417faa0820847d4674d496dfeb069787c3ab2 (patch) | |
tree | 9258fc30925344f844b6d7218679e0876c711eec /blabouncer.conf.example | |
parent | f0936ca1b231df3c5cb7cf80a1d6a88d7ea980af (diff) |
Change default certfile and keyfile to be <basedir>/ instead of $HOME/.blabouncer/.
Diffstat (limited to 'blabouncer.conf.example')
-rw-r--r-- | blabouncer.conf.example | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/blabouncer.conf.example b/blabouncer.conf.example index e9bc15a..805534d 100644 --- a/blabouncer.conf.example +++ b/blabouncer.conf.example @@ -39,18 +39,18 @@ ircserver = "irc.blatech.net" # Real IRC server port ircserverport = "6697" -# Certificate file (defaults to $HOME/.blabouncer/cert.pem) +# Base directory (defaults to $HOME/.blabouncer/) +# Things such as the logs directory will be placed below this +#basedir = "/home/foo/.blabouncer/" + +# Certificate file (defaults to <basedir>/cert.pem) # If clienttls = "0" then this need not be set #certfile = "/home/foo/.blabouncer/cert.pem" -# Certificate key file (defaults to $HOME/.blabouncer/key.pem) +# Certificate key file (defaults to <basedir>/key.pem) # If clienttls = "0" then this need not be set #keyfile = "/home/foo/.blabouncer/key.pem" -# Base directory (defaults to $HOME/.blabouncer/) -# Things such as the logs directory will be placed below this -#basedir = "/home/foo/.blabouncer/" - # Enable logging ("1" for yes or "0" for no) # Logs go to basedir/logs/ with one file per channel/nick logging = "1" |