blob: 3241ebfc5442a10a19fae293b1fa19863121749f [file] [log] [blame]
Louis Maillardf81d36b2024-07-23 14:38:28 -04001# The bootstrap node serves as the entry point to the DHT network.
2# By default, bootstrap.jami.net is configured for the public DHT network and should be used for personal use only.
3# For production environments, it is recommended to set up your own bootstrap node to establish your own DHT network.
4# Documentation: https://docs.jami.net/en_US/user/lan-only.html#boostraping
Amna41848a22024-01-22 16:22:57 -05005bootstrap: "bootstrap.jami.net"
Louis Maillardf81d36b2024-07-23 14:38:28 -04006
7# TURN server is used as a fallback for connections if the NAT block all possible connections.
8# By default is turn.jami.net (which uses coturn) but can be any TURN.
9# Developer must set up their own TURN server.
10# Documentation: https://docs.jami.net/en_US/developer/going-further/setting-up-your-own-turn-server.html
Amna41848a22024-01-22 16:22:57 -050011turn_host: "turn.jami.net"
12turn_user: "ring"
13turn_pass: "ring"
14turn_realm: "ring"
Louis Maillardf81d36b2024-07-23 14:38:28 -040015
16# On server, identities are saved in /etc/dhtnet/id/
17# On client, they are generaly saved in ~/.dnc/
18#certificate: "to/your/certificate.crt"
19#privateKey: "to/your/privatekey.pem"
20
21
22##########################
23### For Client Use Only ##
24##########################
25
26# When dsh server receives connexions, it run the specified binary requested by client
Amna41848a22024-01-22 16:22:57 -050027binary: "bash"
Louis Maillardf81d36b2024-07-23 14:38:28 -040028
29
30##########################
31### For Server Use Only ##
32##########################
33
34# When anonymous is set to true, the server accepts any connection without checking CA
35# When anonymous is set to false, the server allows only connection which are issued by the same CA as the server
Amna4325f0f2024-01-22 16:11:00 -050036anonymous: false
Louis Maillardf81d36b2024-07-23 14:38:28 -040037