From 13c1cc9f3f900dcc8ae8d9fa6f031aa1f9a963b0 Mon Sep 17 00:00:00 2001 From: Chunlin Yang Date: Thu, 11 Oct 2018 00:37:41 +0800 Subject: [PATCH] Fix Readme Error for setup local jaeger service (#265) * Fix Readme error * Fix readme to add ui-base-path --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 077267b528..3f28cfcd8a 100644 --- a/README.md +++ b/README.md @@ -44,9 +44,11 @@ Make sure you have the Jaeger Query service running on http://localhost:16686. F If you don't have it running locally, then tunnel to the correct host and port. ``` -ssh -fN -L 16686:$BACKEND_HOST:$BACKEND_PORT $BACKEND_PORT +ssh -fN -L 16686:$BACKEND_HOST:$BACKEND_PORT $BACKEND_HOST ``` +If you are using [UI Base Path](https://www.jaegertracing.io/docs/1.7/deployment/#ui-base-path) feature, you need to append the base path into `proxy->/api->target` in package.json file. for example: if the base path is `"/jaeger"`, then the target should be `"http://localhost:16686/jaeger"` + Start the development server with hot loading: ```