891b3befca
Several small fixes for ZNC: * Update to current 0.096, include new module * Fix build to not link modules against libstdc++ * Move root check to after module load, to remove the 30 second pause on start. * Add the possibility to directly use hashed passwords. * Make the sample config more verbose for easier adaption. Signed-off-by: Jonas Gorski <jonas.gorski+openwrt@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/packages@24548 3c298f89-4303-0410-b956-a3cf2f4a3e73
24 lines
705 B
Plaintext
24 lines
705 B
Plaintext
config znc
|
|
# where to listen for connections
|
|
list listener '192.168.1.1 1234'
|
|
# load global modules (You need to install them first):
|
|
# list module 'fail2ban'
|
|
|
|
config user 'sampleUser'
|
|
# Use either a plain text password or use the full sha256#... line.
|
|
# You can generate one with 'znc -s'.
|
|
option password 'changeme'
|
|
option nick 'sampleUser'
|
|
option altnick 'userSample'
|
|
option ident 'openwrt'
|
|
option realname 'John Doe'
|
|
|
|
# This adds support for channels in znc configuration:
|
|
# list channel '#chan optional_password'
|
|
|
|
# list of allowed servers:
|
|
list server 'chat.freenode.net 6667'
|
|
|
|
# load user modules ('<module> [params...]'):
|
|
# list module 'simple_away -timer 10 disconnected'
|