This repository was archived by the owner on Mar 10, 2020. It is now read-only.
This repository was archived by the owner on Mar 10, 2020. It is now read-only.
ipfs behind proxy #581
Closed
Description
I am running my IPFS behind an ngnix proxy and redirected port 5001 of IPFS to http://<IPAddress>/ipfs
We are developing a Web Interface from which we want to access http://<IPAddress>/ipfs
, however js-ipfs-api supports ipfsAPI which seems to be accepting only IP address / port as shown below
var ipfs = ipfsAPI('ip4/<IPAddress>/tcp/5001'
, {protocol: 'http'})
Is there any option that would allow me to connect to http://<IPAddress>/ipfs
using ipfsAPI?