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