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.
2 parents 220fc53 + ea135c7 commit 0f170c5Copy full SHA for 0f170c5
templates/ipfs/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