-
Notifications
You must be signed in to change notification settings - Fork 83
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
Incorrect base url paths being used on different pages #252
Comments
I'm seeing a similar issue with my docker / traefik installation:
But when using the dashboard console RUN with for instance that command:
Interestingly, it seem to work on different browsers (Edge/Chrome not working, BRAVE working) and different networks (Homenetwork/Office) |
I've already implemented workarounds for our company platform with some custom code changes and building from source to resolve this issue internally.. so it's definitely possible, hopefully the team can sort it out for everyone.. |
OK; seems a quick fix with the config worked well. in docker-compose.yml
in traefiks config.yml:
This seems to do the trick |
While this is similar to #94 I wanted to highlight specific behaviours which are not working properly.
I was able to rebuild frontend to get assets working via relative ./ path.
Pages like collections or the run actions on quickstart use or need their own path different from the current url pathing however, which currently isn't working.
e.g
https://subdomain.company.com/subpath1/subpath2/dashboard/#/welcome works for loading assets via ./
However clicking RUN uses */dashboard/collections/star_charts instead of /collections/star_charts and fails.
*/dashboard/#/collections api in the background should also be loading from */collections instead of root path /collections.
The text was updated successfully, but these errors were encountered: