-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Default env variables mix binding IP addr with public URL #168
Comments
I think it no longer happens since #142 |
I doesn't happen for login, but I think the problem is still the same for any other API call, isn't it? The clients will try to access 0.0.0.0:8080. |
Could you help understand how often does this happen and who is affected by this? |
This would only affect an installation where you leave the env. variables unset. For our deployment this is not a problem since we set the env. variables, and this would probably be the expected case in most installations. |
It affects in development. |
If the default env variables are used, then:
CAT_HOST
=0.0.0.0
CAT_PORT
=8080
CAT_SERVER_URL
=<CAT_HOST>:<CAT_PORT>
CAT_UI_DOMAIN
=<CAT_HOST>:<CAT_PORT>
With these default values, after a login the browser will try to access
0.0.0.0:8080
, and fail.The text was updated successfully, but these errors were encountered: