We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f8145f commit 690fe1aCopy full SHA for 690fe1a
templates/ipfs/home/ipfs/ipfs_default_config
@@ -196,7 +196,18 @@
196
"Router": ""
197
},
198
"Peering": {
199
+ {% if ipfs_peering_nodes is defined and ipfs_peering_nodes|length %}
200
+ "Peers":[
201
+ {% for node in ipfs_peering_nodes %}
202
+ {
203
+ "ID": node.id,
204
+ "Addrs": node.addrs
205
+ }{% if not loop.last %},{% endif %}
206
+ {% endfor %}
207
+ ]
208
+ {% else %}
209
"Peers": null
210
+ {% endif %}
211
212
"DNS": {
213
"Resolvers": {}
0 commit comments