2019-06-10 01:24:36 +02:00
|
|
|
i2pd
|
|
|
|
====
|
|
|
|
|
|
|
|
[i2pd][1] (I2P Daemon) is a full-featured C++ implementation of I2P client.
|
|
|
|
|
|
|
|
## docker-compose.yml
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
i2pd:
|
|
|
|
image: vimagick/i2pd
|
|
|
|
ports:
|
|
|
|
- "4444:4444"
|
|
|
|
- "4447:4447"
|
|
|
|
- "7070:7070"
|
|
|
|
volumes:
|
|
|
|
- ./data/i2pd.conf:/etc/i2pd/i2pd.conf
|
|
|
|
- ./data/tunnels.conf.d:/etc/i2pd/tunnels.conf.d
|
|
|
|
restart: unless-stopped
|
|
|
|
```
|
|
|
|
|
|
|
|
## Server
|
|
|
|
|
2019-06-10 01:33:44 +02:00
|
|
|
```bash
|
2019-06-10 01:24:36 +02:00
|
|
|
$ docker-compose up -d
|
2019-06-10 01:33:44 +02:00
|
|
|
$ curl http://127.0.0.1:7070/
|
2019-06-10 01:24:36 +02:00
|
|
|
```
|
|
|
|
|
2019-06-10 01:37:47 +02:00
|
|
|
## Tunnel
|
|
|
|
|
|
|
|
- You can find examples in: /usr/share/doc/i2pd/tunnels.d/
|
|
|
|
- Document: https://github.com/PurpleI2P/i2pd/wiki/tunnels.conf
|
|
|
|
|
2019-06-10 01:24:36 +02:00
|
|
|
## Client
|
|
|
|
|
|
|
|
Download [FoxyProxy][2] for Firefox.
|
|
|
|
|
|
|
|
## Example Sites
|
|
|
|
|
2019-06-10 01:37:47 +02:00
|
|
|
- http://planet.i2p
|
2019-06-10 01:33:44 +02:00
|
|
|
- http://identiguy.i2p
|
|
|
|
- http://tracker2.postman.i2p
|
2019-06-10 01:24:36 +02:00
|
|
|
|
|
|
|
[1]: https://github.com/PurpleI2P/i2pd
|
|
|
|
[2]: https://addons.mozilla.org/en-US/firefox/addon/foxyproxy-standard/
|