~jose/charms/precise/znc/fix-various

« back to all changes in this revision

Viewing changes to config.yaml

  • Committer: Patrick Hetu
  • Date: 2012-03-29 04:29:42 UTC
  • Revision ID: patrick.hetu@gmail.com-20120329042942-tetyyak5ed9j35xz
fixes for the first review

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
options:
2
 
    listener4:
3
 
      type: string
4
 
      default: "+6697"
5
 
      description: |
6
 
        [web_only|irc_only] [host or IP] [+]port - Configuration of IPv4
7
 
        listening port. Use web_only or irc_only, if you don't want port to be
8
 
        universal. Put host/IP before the port with a space between to bind to a
9
 
        specific IP (notice that in this case the listener can't listen on both ipv4
10
 
        and ipv6). Then goes the port ZNC will listen on. If the port is prepended with
11
 
        a '+' (without space) then ZNC listens using SSL. You can have several
12
 
        listeners in one ZNC. BE CAREFULL: do not left spaces at the end of the string.
13
 
    listener6:
14
 
      type: string
15
 
      default: "+6697"
16
 
      description: |
17
 
        [web_only|irc_only] [host or IP] [+]port - Configuration of IPv6
18
 
        listening port. Use web_only or irc_only, if you don't want port to be
19
 
        universal. Put host/IP before the port with a space between to bind to a
20
 
        specific IP (notice that in this case the listener can't listen on both ipv4
21
 
        and ipv6). Then goes the port ZNC will listen on. If the port is prepended with
22
 
        a '+' (without space) then ZNC listens using SSL. You can have several
23
 
        listeners in one ZNC. BE CAREFULL: do not left spaces at the end of the string.
24
 
    users_config:
25
 
        default: ""
26
 
        type: string
27
 
        description: |
28
 
          The pseudo-xml to configure your user, server, channel. Example::
29
 
 
30
 
            <User ubuntu>
31
 
                Pass = changeme
32
 
                Nick = ubuntu
33
 
                AltNick = ubuntu_
34
 
                Ident = ubuntu
35
 
                RealName = ubuntu
36
 
                QuitMsg = ZNC - http://znc.sourceforge.net
37
 
                MultiClients = true
38
 
                DenyLoadMod = false
39
 
                Admin = true
40
 
                IRCConnectEnabled = true
41
 
                Allow = *
42
 
                LoadModule = admin
43
 
                Server = irc.freenode.net 6667
44
 
 
45
 
                <Chan #ubuntu>
46
 
                </Chan>
47
 
            </User>
48
 
 
49
 
          For more details about syntax and variables see: http://wiki.znc.in/Configuration"
 
2
    listener:
 
3
      type: string
 
4
      default: "6667"
 
5
      description: |
 
6
        [web_only|irc_only] [host or IP] [+]port - Configuration of IPv4 and IPv6
 
7
        listening port. Use web_only or irc_only, if you don't want port to be
 
8
        universal. Put host/IP before the port with a space between to bind to a
 
9
        specific IP (notice that in this case the listener can't listen on both ipv4
 
10
        and ipv6). Then goes the port ZNC will listen on. If the port is prepended with
 
11
        a '+' (without space) then ZNC listens using SSL. You can have several
 
12
        listeners in one ZNC. BE CAREFULL: do not left spaces at the end of the string.
 
13
    nickname:
 
14
        default: ""
 
15
        type: string
 
16
        description: "Your nick name in the chat"
 
17
    username:
 
18
        default: ""
 
19
        type: string
 
20
        description: "The username to log into the web interface and the IRC bouncer."
 
21
    password:
 
22
        default: ""
 
23
        type: string
 
24
        description: "The password to log into the web interface and the IRC bouncer."
 
25
    server_hostname:
 
26
        default: "irc.freenode.net"
 
27
        type: string
 
28
        description: "The hostname of the remote IRC server."
 
29
    server_port:
 
30
        default: "6667"
 
31
        type: string
 
32
        description: "The port of the remove IRC server."
 
33
    channels:
 
34
        default: ""
 
35
        type: string
 
36
        description: "IRC channels to join in a space-separated format."