AA: packages: znc: don't start with default config
[12.09/packages.git] / net / znc / files / znc.conf
1 config znc
2         # where to listen for connections
3         list listener   '192.168.1.1 1234'
4         # If using SSL sockets, use the following certifcate:
5         # option znc_ssl_cert '/etc/znc.cert'
6
7         # load global modules (You need to install them first):
8         # list module 'fail2ban'
9
10         # remove this to enable the service
11         option disabled 1
12
13 config user 'sampleUser'
14         # Use either a plain text password or use the full sha256#... line.
15         # You can generate one with 'znc -s'.
16         option password 'changeme'
17         option nick     'sampleUser'
18         option altnick  'userSample'
19         option ident    'openwrt'
20         option realname 'John Doe'
21
22         # This adds support for channels in znc configuration:
23         # list channel    '#chan optional_password'
24
25         # list of allowed servers:
26         # list server   'chat.freenode.net 6667'
27
28         # load user modules ('<module> [params...]'):
29         # list module 'simple_away -timer 10 disconnected'