When i use wss in go-ipfs
, it throw not support wss
so i can’t use
/dns4/ws-star.discovery.libp2p.io/tcp/443/wss/p2p-websocket-star
i wanna make js-ipfs and go-ipfs can join same pubsub topic
does any other address can make it or how can make go-ipfs support it
To make it possible you only need to ensure JS is connected to GO.
There is no ws-star for go-ipfs because it has DHT. JS version has no DHT yet, but can work around that by letting it know about your GO node by adding it to bootstraps:
/ws
) in go-ipfs config:/ip4/A.B.C.D/tcp/4422/ws
toAddresses.Swarm
array and restart the node – it will enable unencrypted WebSockets/wss
)/wss
address of go-ipfs in js-ipfs as one of bootstrap servers.