Search code examples
sidekiqrackpumasidekiq-monitor

How to start Sidekiq Web UI on public 0.0.0.0?


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


Solution

  • 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.