In order to start sidekiq web UI I currently do:
rackup sidekiq_web.ru -p 9293
However once puma starts it listens only to localhost
.
* Listening on tcp://localhost:9293
How can I run this on http://0.0.0.0:9293
?
Thanks
You can use the -o
option.
rackup sidekiq_web.ru -p 9293 -o 0.0.0.0
This will make rackup listen on all available network interfaces.