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 a9aee2b commit 7f6c971Copy full SHA for 7f6c971
templates/ipfs/home/ipfs/ipfs_default_config
@@ -201,7 +201,18 @@
201
"Router": ""
202
},
203
"Peering": {
204
+ {% if ipfs_peering_nodes is defined and ipfs_peering_nodes|length %}
205
+ "Peers":[
206
+ {% for node in ipfs_peering_nodes %}
207
+ {
208
+ "ID": node.id,
209
+ "Addrs": node.addrs
210
+ }{% if not loop.last %},{% endif %}
211
+ {% endfor %}
212
+ ]
213
+ {% else %}
214
"Peers": null
215
+ {% endif %}
216
217
"DNS": {
218
"Resolvers": {}
0 commit comments