typicode / hotel

🏩 A simple process manager for developers. Start apps from your browser and access them using local domains
MIT License
9.98k stars 422 forks source link

How to use remote ip address instead of localhost and 127.0.0.1? #150

Closed Redigast13 closed 7 years ago

Redigast13 commented 7 years ago

I want to open hotel that located on remote server. http://{some-ip}:2000 does not work. But if I open localhost:2000 on remote server then everything works fine

typicode commented 7 years ago

Hi @Redigast13,

By default, hotel only listens to 127.0.0.1. To change this edit ~/.hotel/conf.json:

"host": "0.0.0.0"

Then run hotel stop && hotel start to restart and you should be able to access hotel dashboard from outside.

Redigast13 commented 7 years ago

Thank you!