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 b28d991Copy full SHA for b28d991
roles/ipfs/templates/home/ipfs/ipfs_default_config
@@ -7,7 +7,7 @@
7
"StorageMax": "{{ ipfs_storage_max }}",
8
"StorageGCWatermark": 90,
9
"BloomFilterSize": {{ ipfs_bloom_filter_size }},
10
- "GCPeriod": "1h",
+ "GCPeriod": "{{ ipfs_gc_period | default('1h') }}",
11
"HashOnRead": false,
12
{% if ipfs_use_badger | default(False) %}
13
"Spec": {
@@ -144,7 +144,7 @@
144
"Swarm": {
145
"DisableBandwidthMetrics": {{ ipfs_disable_bandwidth_metrics | default(False) | lower }},
146
"DisableNatPortMap": true,
147
- "DisableRelay": false,
+ "DisableRelay": {{ ipfs_disable_relay | default(False) | lower }},
148
"EnableAutoNATService": false,
149
"EnableAutoRelay": false,
150
"EnableRelayHop": false,
0 commit comments