Browse Source

mention true/false values for bool params

pull/420/head
orignal 9 years ago
parent
commit
1c76d43e44
  1. 12
      docs/configuration.md

12
docs/configuration.md

@ -17,9 +17,9 @@ Command line options
* --port= - The port to listen on * --port= - The port to listen on
* --daemon - Router will go to background after start * --daemon - Router will go to background after start
* --service - Router will use system folders like '/var/lib/i2pd' * --service - Router will use system folders like '/var/lib/i2pd'
* --ipv6 - Enable communication through ipv6 * --ipv6 - Enable communication through ipv6. false by default
* --notransit - Router will not accept transit tunnels at startup * --notransit - Router will not accept transit tunnels at startup. false by default
* --floodfill - Router will be floodfill * --floodfill - Router will be floodfill. false by default
* --bandwidth= - L if bandwidth is limited to 32Kbs/sec, O - to 256Kbs/sec, P - unlimited * --bandwidth= - L if bandwidth is limited to 32Kbs/sec, O - to 256Kbs/sec, P - unlimited
* --family= - Name of a family, router belongs to * --family= - Name of a family, router belongs to
* --svcctl= - Windows service management (--svcctl="install" or --svcctl="remove") * --svcctl= - Windows service management (--svcctl="install" or --svcctl="remove")
@ -63,15 +63,15 @@ For example:
i2p.conf: i2p.conf:
# comment # comment
log = yes log = true
ipv6 = yes ipv6 = true
# settings for specific module # settings for specific module
[httpproxy] [httpproxy]
port = 4444 port = 4444
# ^^ this will be --httproxy.port= in cmdline # ^^ this will be --httproxy.port= in cmdline
# another one # another one
[sam] [sam]
enabled = yes enabled = true
tunnels.cfg (filename of this config is subject of change): tunnels.cfg (filename of this config is subject of change):

Loading…
Cancel
Save