kadalu/gdash

Need to bind to actual IP

mabushey opened this issue · 2 comments

Localhost doesn't work for me as my cluster is in a data center. How do I bind gdash to an IP instead of localhost?

I used nginx to proxy it:

location / {
proxy_pass http://127.0.0.1:8080/;
}

It's probably better this way as I have full control over htaccess passwords and SSL.

cool. It worked for me with internal IPs(hosted gdash inside a vm and accessed outside). Let me work on fixing IP related things and add authentication.