12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- ## Configuration file for a typical i2pd user
- ## See https://i2pd.readthedocs.io/en/latest/user-guide/configuration/
- ## for more options you can use in this file.
- #logfile = /sdcard/i2pd/i2pd.log
- loglevel = none
- #tunnelsdir = /sdcard/i2pd/tunnels.d
- # host = 1.2.3.4
- # port = 4567
- ipv4 = true
- ipv6 = false
- # ntcp = true
- # ntcpproxy = http://127.0.0.1:8118
- # ssu = true
- bandwidth = L
- # share = 100
- # notransit = true
- # floodfill = true
- [ntcp2]
- enabled = true
- [http]
- enabled = true
- address = 127.0.0.1
- port = 7070
- # auth = true
- # user = i2pd
- # pass = changeme
- [httpproxy]
- enabled = true
- address = 127.0.0.1
- port = 4444
- inbound.length = 1
- inbound.quantity = 5
- outbound.length = 1
- outbound.quantity = 5
- signaturetype=7
- keys = proxy-keys.dat
- # addresshelper = true
- # outproxy = http://false.i2p
- ## httpproxy section also accepts I2CP parameters, like "inbound.length" etc.
- [socksproxy]
- enabled = true
- address = 127.0.0.1
- port = 4447
- keys = proxy-keys.dat
- # outproxy.enabled = false
- # outproxy = 127.0.0.1
- # outproxyport = 9050
- ## socksproxy section also accepts I2CP parameters, like "inbound.length" etc.
- [sam]
- enabled = false
- # address = 127.0.0.1
- # port = 7656
- [precomputation]
- elgamal = true
- [upnp]
- enabled = true
- # name = I2Pd
- [reseed]
- verify = true
- ## 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
- [limits]
- transittunnels = 50
- [persist]
- profiles = false
|