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 74197e5 commit ea135c7Copy full SHA for ea135c7
roles/ipfs/templates/home/ipfs/ipfs_default_config
@@ -194,7 +194,18 @@
194
"Router": ""
195
},
196
"Peering": {
197
+ {% if ipfs_peering_nodes is defined and ipfs_peering_nodes|length %}
198
+ "Peers":[
199
+ {% for node in ipfs_peering_nodes %}
200
+ {
201
+ "ID": node.id,
202
+ "Addrs": node.addrs
203
+ }{% if not loop.last %},{% endif %}
204
+ {% endfor %}
205
+ ]
206
+ {% else %}
207
"Peers": null
208
+ {% endif %}
209
210
"Reprovider": {
211
"Interval": "12h",
0 commit comments