Description
opened on Jul 26, 2017
Jaeger does not run behind a reverse proxy due to how the css and js is being loaded.
<link href="/static/css/main.123456789.css" rel="stylesheet">
This can be corrected with something like
<link href="./static/css/main.123456789.css" rel="stylesheet">
Similarly with the js file.
Thanks
Activity