i2pd/contrib/i2pd.conf

232 lines
7.3 KiB
Plaintext
Raw Normal View History

2016-03-20 01:39:35 +03:00
## Configuration file for a typical i2pd user
2018-09-07 00:27:28 +03:00
## See https://i2pd.readthedocs.io/en/latest/user-guide/configuration/
2016-03-20 01:39:35 +03:00
## for more options you can use in this file.
## Lines that begin with "## " try to explain what's going on. Lines
## that begin with just "#" are disabled commands: you can enable them
## by removing the "#" symbol.
2016-03-28 03:00:00 +03:00
## Tunnels config file
## Default: ~/.i2pd/tunnels.conf or /var/lib/i2pd/tunnels.conf
2016-03-28 03:00:00 +03:00
# tunconf = /var/lib/i2pd/tunnels.conf
2016-03-20 01:39:35 +03:00
2018-11-06 20:04:26 +03:00
## Tunnels config files path
## Use that path to store separated tunnels in different config files.
## Default: ~/.i2pd/tunnels.d or /var/lib/i2pd/tunnels.d
# tunnelsdir = /var/lib/i2pd/tunnels.conf.d
2016-03-20 01:39:35 +03:00
## Where to write pidfile (don't write by default)
2016-03-28 03:00:00 +03:00
# pidfile = /var/run/i2pd.pid
2016-03-20 01:39:35 +03:00
## Logging configuration section
2016-03-28 03:00:00 +03:00
## By default logs go to stdout with level 'info' and higher
2016-03-20 01:39:35 +03:00
##
2016-03-28 03:00:00 +03:00
## Logs destination (valid values: stdout, file, syslog)
## * stdout - print log entries to stdout
## * file - log entries to a file
## * syslog - use syslog, see man 3 syslog
# log = file
2016-03-20 01:39:35 +03:00
## Path to logfile (default - autodetect)
2016-06-22 11:49:22 +03:00
# logfile = /var/log/i2pd.log
2017-11-15 21:30:00 +03:00
## Log messages above this level (debug, *info, warn, error, none)
## If you set it to none, logging will be disabled
2016-03-28 03:00:00 +03:00
# loglevel = info
## Write full CLF-formatted date and time to log (default: write only time)
# logclftime = true
2016-03-20 01:39:35 +03:00
## Daemon mode. Router will go to background after start
2016-03-28 03:00:00 +03:00
# daemon = true
2016-03-20 01:39:35 +03:00
2016-08-12 23:23:10 +03:00
## Specify a family, router belongs to (default - none)
# family =
2016-03-20 01:39:35 +03:00
## External IP address to listen for connections
## By default i2pd sets IP automatically
2016-03-28 03:00:00 +03:00
# host = 1.2.3.4
2016-03-20 01:39:35 +03:00
## Port to listen for connections
2016-03-28 03:00:00 +03:00
## By default i2pd picks random port. You MUST pick a random number too,
2016-03-20 01:39:35 +03:00
## don't just uncomment this
2016-06-22 11:46:37 +03:00
# port = 4567
## Enable communication through ipv4
ipv4 = true
2016-03-28 03:00:00 +03:00
## Enable communication through ipv6
2016-06-22 11:46:37 +03:00
ipv6 = false
2016-03-28 03:00:00 +03:00
2016-08-12 23:23:10 +03:00
## Network interface to bind to
2018-01-06 06:48:51 +03:00
# ifname =
## You can specify different interfaces for IPv4 and IPv6
# ifname4 =
# ifname6 =
2016-08-12 23:23:10 +03:00
## Enable NTCP transport (default = true)
# ntcp = true
## If you run i2pd behind a proxy server, you can only use NTCP transport with ntcpproxy option
## Should be http://address:port or socks://address:port
# ntcpproxy = http://127.0.0.1:8118
2016-08-12 23:23:10 +03:00
## Enable SSU transport (default = true)
# ssu = true
## Should we assume we are behind NAT? (false only in MeshNet)
# nat = true
2016-03-20 01:39:35 +03:00
## Bandwidth configuration
2017-04-19 11:39:01 +03:00
## L limit bandwidth to 32KBs/sec, O - to 256KBs/sec, P - to 2048KBs/sec,
2016-06-22 11:46:37 +03:00
## X - unlimited
## Default is X for floodfill, L for regular node
2016-03-28 03:00:00 +03:00
# bandwidth = L
## Max % of bandwidth limit for transit. 0-100. 100 by default
# share = 100
2016-03-20 01:39:35 +03:00
## Router will not accept transit tunnels, disabling transit traffic completely
## (default = false)
2016-03-28 03:00:00 +03:00
# notransit = true
2016-03-20 01:39:35 +03:00
## Router will be floodfill
2016-03-28 03:00:00 +03:00
# floodfill = true
2016-03-20 01:39:35 +03:00
[http]
## Web Console settings
2016-03-28 03:00:00 +03:00
## Uncomment and set to 'false' to disable Web Console
# enabled = true
## Address and port service will listen on
address = 127.0.0.1
port = 7070
## Path to web console, default "/"
# webroot = /
## Uncomment following lines to enable Web Console authentication
# auth = true
# user = i2pd
# pass = changeme
2016-03-20 01:39:35 +03:00
[httpproxy]
2016-03-28 03:00:00 +03:00
## Uncomment and set to 'false' to disable HTTP Proxy
# enabled = true
## Address and port service will listen on
2016-04-05 03:00:00 +03:00
address = 127.0.0.1
port = 4444
2016-03-20 01:39:35 +03:00
## Optional keys file for proxy local destination
2016-03-28 03:00:00 +03:00
# keys = http-proxy-keys.dat
## Enable address helper for adding .i2p domains with "jump URLs" (default: true)
# addresshelper = true
## Address of a proxy server inside I2P, which is used to visit regular Internet
# outproxy = http://false.i2p
## httpproxy section also accepts I2CP parameters, like "inbound.length" etc.
2016-03-28 03:00:00 +03:00
[socksproxy]
## Uncomment and set to 'false' to disable SOCKS Proxy
# enabled = true
## Address and port service will listen on
2016-06-22 11:46:37 +03:00
address = 127.0.0.1
port = 4447
2016-03-20 01:39:35 +03:00
## Optional keys file for proxy local destination
2016-03-28 03:00:00 +03:00
# keys = socks-proxy-keys.dat
2016-03-20 01:39:35 +03:00
## Socks outproxy. Example below is set to use Tor for all connections except i2p
## Uncomment and set to 'true' to enable using of SOCKS outproxy
# outproxy.enabled = false
2016-03-28 03:00:00 +03:00
## Address and port of outproxy
# outproxy = 127.0.0.1
# outproxyport = 9050
## socksproxy section also accepts I2CP parameters, like "inbound.length" etc.
2016-03-28 03:00:00 +03:00
[sam]
## Uncomment and set to 'true' to enable SAM Bridge
enabled = true
2016-03-28 03:00:00 +03:00
## Address and port service will listen on
# address = 127.0.0.1
# port = 7656
[bob]
## Uncomment and set to 'true' to enable BOB command channel
# enabled = false
## Address and port service will listen on
# address = 127.0.0.1
# port = 2827
2016-06-22 11:46:37 +03:00
[i2cp]
## Uncomment and set to 'true' to enable I2CP protocol
# enabled = false
## Address and port service will listen on
# address = 127.0.0.1
# port = 7654
2016-03-28 03:00:00 +03:00
[i2pcontrol]
## Uncomment and set to 'true' to enable I2PControl protocol
# enabled = false
## Address and port service will listen on
# address = 127.0.0.1
# port = 7650
## Authentication password. "itoopie" by default
# password = itoopie
[precomputation]
## Enable or disable elgamal precomputation table
## By default, enabled on i386 hosts
# elgamal = true
[upnp]
## Enable or disable UPnP: automatic port forwarding (enabled by default in WINDOWS, ANDROID)
# enabled = false
## Name i2pd appears in UPnP forwardings list (default = I2Pd)
# name = I2Pd
[reseed]
## Options for bootstrapping into I2P network, aka reseeding
## Enable or disable reseed data verification.
verify = true
## URLs to request reseed data from, separated by comma
## Default: "mainline" I2P Network reseeds
# urls = https://reseed.i2p-projekt.de/,https://i2p.mooo.com/netDb/,https://netdb.i2p2.no/
## Path to local reseed data file (.su3) for manual reseeding
# file = /path/to/i2pseeds.su3
## or HTTPS URL to reseed from
# file = https://legit-website.com/i2pseeds.su3
## Path to local ZIP file or HTTPS URL to reseed from
# zipfile = /path/to/netDb.zip
## If you run i2pd behind a proxy server, set proxy server for reseeding here
## Should be http://address:port or socks://address:port
# proxy = http://127.0.0.1:8118
## Minimum number of known routers, below which i2pd triggers reseeding. 25 by default
# threshold = 25
[addressbook]
## AddressBook subscription URL for initial setup
## Default: inr.i2p at "mainline" I2P Network
# defaulturl = http://joajgazyztfssty4w2on5oaqksz6tqoxbduy553y34mf4byv6gpq.b32.i2p/export/alive-hosts.txt
## Optional subscriptions URLs, separated by comma
# subscriptions = http://inr.i2p/export/alive-hosts.txt,http://stats.i2p/cgi-bin/newhosts.txt,http://rus.i2p/hosts.txt
[limits]
## Maximum active transit sessions (default:2500)
# transittunnels = 2500
## Limit number of open file descriptors (0 - use system limit)
# openfiles = 0
## Maximum size of corefile in Kb (0 - use system limit)
# coresize = 0
## Threshold to start probabalistic backoff with ntcp sessions (0 - use system limit)
# ntcpsoft = 0
## Maximum number of ntcp sessions (0 - use system limit)
# ntcphard = 0
[trust]
## Enable explicit trust options. false by default
# enabled = true
## Make direct I2P connections only to routers in specified Family.
# family = MyFamily
## Make direct I2P connections only to routers specified here. Comma separated list of base64 identities.
# routers =
## Should we hide our router from other routers? false by default
# hidden = true
[exploratory]
## Exploratory tunnels settings with default values
# inbound.length = 2
# inbound.quantity = 3
# outbound.length = 2
# outbound.quantity = 3
[persist]
## Save peer profiles on disk (default: true)
# profiles = true