mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-01-19 11:50:56 +00:00
5b4e829675
* Fixes issues with storage/webserver configs not enabled but still having their values put in to geth cors * Adds fixes for not including port when port == false * Refactors of cors logic, and also now in a generic location so can be used by both `embark blockchain` and when blockchain started in separate process
26 lines
536 B
JSON
26 lines
536 B
JSON
{
|
|
"default": {
|
|
"enabled": true,
|
|
"available_providers": ["ipfs", "swarm"],
|
|
"ipfs_bin": "ipfs",
|
|
"provider": "ipfs",
|
|
"host": "localhost",
|
|
"port": 5001
|
|
},
|
|
"development": {
|
|
"enabled": true,
|
|
"provider": "swarm",
|
|
"host": "swarm-gateways.net",
|
|
"port": false,
|
|
"getUrl": "http://swarm-gateways.net/bzzr:/"
|
|
},
|
|
"livenet": {
|
|
"enabled": true,
|
|
"provider": "ipfs",
|
|
"host": "ipfs.infura.io",
|
|
"protocol": "https",
|
|
"port": false,
|
|
"getUrl": "https://ipfs.infura.io/ipfs/"
|
|
}
|
|
}
|