I hava managed to set up my self-hosted instance o...
# announcements
b
I hava managed to set up my self-hosted instance on
k8s
. How to I see the ui to login? Because when I go to the url that exposes the services, e.g.
<https://my.growthbook.mydomain.com>
I see this
Copy code
{
  "name": "GrowthBook API",
  "production": true,
  "api_host": "<http://localhost:3000>",
  "app_origin": "<https://localhost:3100>",
  "config_source": "db",
  "email_enabled": false,
  "build": {
    "sha": "cf216ccc76a9d54e4bd793781e3e1d2e45385548",
    "date": "2023-05-18T14:47:09Z"
  }
}
f
that object is returned from the API
sounds like you’re url is routing to the 3100 port instead of 3000
b
ah ok I see. I will switch the port then, thx
However the
/healtcheck
path is only available via whatever port is used for the backend, right?
And the front end does not expose any health check mechanism
correct?
f
I believe so
👍 1