|
84 | 84 | "/ip4/0.0.0.0/tcp/4001",
|
85 | 85 | "/ip4/0.0.0.0/tcp/4002/ws",
|
86 | 86 | "/ip4/0.0.0.0/udp/4001/quic",
|
| 87 | + "/ip4/0.0.0.0/udp/4001/quic-v1", |
| 88 | + "/ip4/0.0.0.0/udp/4001/quic-v1/webtransport", |
87 | 89 | "/ip6/::/tcp/4001",
|
88 | 90 | "/ip6/::/udp/4001/quic",
|
| 91 | + "/ip6/::/udp/4001/quic-v1", |
| 92 | + "/ip6/::/udp/4001/quic-v1/webtransport", |
89 | 93 | "/ip6/::/tcp/4002/ws"
|
90 | 94 | ]
|
91 | 95 | },
|
|
101 | 105 | }
|
102 | 106 | },
|
103 | 107 | "Routing": {
|
104 |
| - "Type": "{{ ipfs_routing | default('dht') }}" |
| 108 | + "AcceleratedDHTClient": {{ ipfs_accelerated_dht_client | default(False) | lower }}, |
| 109 | + "Routers": null, |
| 110 | + "Methods": null |
105 | 111 | },
|
106 | 112 | "Ipns": {
|
107 | 113 | "RepublishPeriod": "",
|
|
131 | 137 | ]
|
132 | 138 | },
|
133 | 139 | "RootRedirect": "{{ ipfs_gateway_root_redirect | default('') }}",
|
134 |
| - "Writable": false, |
135 | 140 | "PathPrefixes": [],
|
136 | 141 | "APICommands": [],
|
137 | 142 | "NoFetch": false,
|
138 | 143 | "NoDNSLink": false,
|
| 144 | + "DeserializedResponses": null, |
139 | 145 | "PublicGateways": {{ ipfs_public_gateways | default(None) | to_nice_json(indent=2) | indent(6) }}
|
140 | 146 | },
|
141 | 147 | "API": {
|
142 | 148 | "HTTPHeaders": {}
|
143 | 149 | },
|
144 | 150 | "Swarm": {
|
145 |
| - "DisableBandwidthMetrics": {{ ipfs_disable_bandwidth_metrics | default(False) | lower }}, |
146 |
| - "DisableNatPortMap": true, |
147 |
| - "DisableRelay": {{ ipfs_disable_relay | default(False) | lower }}, |
148 |
| - "EnableAutoNATService": false, |
149 |
| - "EnableAutoRelay": false, |
150 |
| - "EnableRelayHop": false, |
151 |
| - "Transports": { |
152 |
| - "Network": {}, |
153 |
| - "Security": {}, |
154 |
| - "Multiplexers": {} |
155 |
| - }, |
156 | 151 | "AddrFilters": [
|
157 | 152 | {% if ipfs_addr_filters is defined %}
|
158 | 153 | {% for p in ipfs_addr_filters %}
|
|
181 | 176 | "/ip6/fe80::/ipcidr/10"
|
182 | 177 | {% endif %}
|
183 | 178 | ],
|
| 179 | + "DisableBandwidthMetrics": {{ ipfs_disable_bandwidth_metrics | default(False) | lower }}, |
| 180 | + "DisableNatPortMap": true, |
| 181 | + "RelayClient": {}, |
| 182 | + "RelayService": {}, |
| 183 | + "Transports": { |
| 184 | + "Network": {}, |
| 185 | + "Security": {}, |
| 186 | + "Multiplexers": {} |
| 187 | + }, |
184 | 188 | "ConnMgr": {
|
185 | 189 | "GracePeriod": "20s",
|
186 | 190 | "HighWater": {{ ipfs_connmgr_high_water | default(2000) }},
|
187 | 191 | "LowWater": {{ ipfs_connmgr_low_water | default(1500) }},
|
188 | 192 | "Type": "basic"
|
| 193 | + }, |
| 194 | + "ResourceMgr": { |
| 195 | + "MaxMemory": "{{ ipfs_resourcemgr_max_memory | default(0) }}" |
189 | 196 | }
|
190 | 197 | },
|
191 | 198 | "AutoNAT": {},
|
|
196 | 203 | "Peering": {
|
197 | 204 | "Peers": null
|
198 | 205 | },
|
| 206 | + "DNS": { |
| 207 | + "Resolvers": {} |
| 208 | + }, |
| 209 | + "Migration": { |
| 210 | + "DownloadSources": [], |
| 211 | + "Keep": "" |
| 212 | + }, |
| 213 | + "Provider": { |
| 214 | + "Strategy": "" |
| 215 | + }, |
199 | 216 | "Reprovider": {
|
200 | 217 | "Interval": "12h",
|
201 | 218 | "Strategy": "{{ ipfs_reprovider_strategy | default('all') }}"
|
202 | 219 | },
|
203 | 220 | "Experimental": {
|
204 | 221 | "FilestoreEnabled": false,
|
205 |
| - "Libp2pStreamMounting": false, |
206 |
| - "P2pHttpProxy": false, |
207 |
| - "ShardingEnabled": false, |
208 |
| - "StrategicProviding": false, |
209 | 222 | "UrlstoreEnabled": false,
|
210 | 223 | "GraphsyncEnabled": false,
|
211 |
| - "AcceleratedDHTClient": {{ ipfs_experimental_accelerated_dht_client | default(False) | lower }}, |
212 |
| - "StrategicProviding": {{ ipfs_experimental_strategic_providing | default(False) | lower }} |
| 224 | + "Libp2pStreamMounting": false, |
| 225 | + "P2pHttpProxy": false, |
| 226 | + "StrategicProviding": {{ ipfs_experimental_strategic_providing | default(False) | lower }}, |
| 227 | + "OptimisticProvide": false, |
| 228 | + "OptimisticProvideJobsPoolSize": 0 |
213 | 229 | },
|
214 | 230 | "Plugins": {
|
215 | 231 | "Plugins": null
|
216 | 232 | },
|
217 | 233 | "Pinning": {
|
218 |
| - "RemoteServices": null |
219 |
| - } |
| 234 | + "RemoteServices": {} |
| 235 | + }, |
| 236 | + "Internal": {} |
220 | 237 | }
|
0 commit comments