From 8304aee35969519bb215d2c10c5f87de213fff57 Mon Sep 17 00:00:00 2001 From: Claus Ibsen Date: Fri, 28 Nov 2014 16:50:34 +0100 Subject: [PATCH] Added some docs how to configure http port for hawtio in jube --- docs/faqConfig.md | 10 ++++++++++ jube/pom.xml | 1 + 2 files changed, 11 insertions(+) diff --git a/docs/faqConfig.md b/docs/faqConfig.md index 4d499d4..f597205 100644 --- a/docs/faqConfig.md +++ b/docs/faqConfig.md @@ -33,3 +33,13 @@ You can configure where this folder lives on the file system using the **JUBE_PR export JUBE_PROCESS_DIR=/var/local/myjube/processes +#### How do I configure HTTP port for hawtio web application? + +Jube embeds hawtio as the web console. By default port 8585 is used. + +The port number can be configured as an environment variable, for example to use port 8282: + + export HTTP_PORT=8282 + +Alternative the port number can also be configured in the `env.sh` / `env.bat` script file, which setup the environment variables. + diff --git a/jube/pom.xml b/jube/pom.xml index af4d509..6022f6c 100644 --- a/jube/pom.xml +++ b/jube/pom.xml @@ -43,6 +43,7 @@ false mvn:io.fabric8.quickstarts/fabric8-quickstarts-parent/${fabric8.version}/zip/app,mvn:io.fabric8.jube.images.fabric8/apps/${fabric8.version}/zip/app + 8585