Use local default IPFS gateway

Same as for ipfs.kosmos.org, this turns document fetches into GET
requests, which will be cached.
This commit is contained in:
2019-07-11 22:24:51 +02:00
parent aa98b35796
commit d8a9886442
+2 -1
View File
@@ -56,7 +56,8 @@ module.exports = function(environment) {
ENV.ipfs = {
host: 'localhost',
port: '5001',
protocol: 'http'
protocol: 'http',
gatewayUrl: 'http://localhost:8080/ipfs'
};
}