I am using http://nsq.io/ for pub/sub in our system.
Currently, we just use Nsq.io for local server only, I public a message use localhost as:
$ curl -d "<message>" http://127.0.0.1:4151/pub?topic=name
I plan to use Nsq.io in public server and want to use as:
$ curl -d "<message>" http://ip-address:4151/pub?topic=name
I can't find document or guide to config like this, anyone have experience to advice me?
Thank in advance.