keycloak-aplcache

Details

diff --git a/examples/demo-template/customer-app/src/main/webapp/customers/session.jsp b/examples/demo-template/customer-app/src/main/webapp/customers/session.jsp
index 07f99a1..ba8583d 100644
--- a/examples/demo-template/customer-app/src/main/webapp/customers/session.jsp
+++ b/examples/demo-template/customer-app/src/main/webapp/customers/session.jsp
@@ -9,8 +9,8 @@
     <title>Customer Session Page</title>
   </head>
   <body bgcolor="#E3F6CE">
-    <p>Your hostname: <%= UriUtils.getHostName() %></p>
-    <p>Your session ID: <%= request.getSession().getId() %></p>
+    <p>Your hostname: <b><%= UriUtils.getHostName() %></b></p>
+    <p>Your session ID: <b><%= request.getSession().getId() %></b></p>
     <p>You visited this page <b><%= CustomerDatabaseClient.increaseAndGetCounter(request) %></b> times.</p>
     <br><br>
   </body>
diff --git a/testsuite/docker-cluster/wildfly/deploy-examples.sh b/testsuite/docker-cluster/wildfly/deploy-examples.sh
index f217337..7da2946 100644
--- a/testsuite/docker-cluster/wildfly/deploy-examples.sh
+++ b/testsuite/docker-cluster/wildfly/deploy-examples.sh
@@ -28,4 +28,7 @@ for I in *.war/WEB-INF/keycloak.json; do
   sed -i -e 's/\"use-hostname-for-local-requests\": false/\"use-hostname-for-local-requests\": true/' $I;
 done;
 
+# Enable distributable for customer-portal
+sed -i -e 's/<\/module-name>/&\n    <distributable \/>/' customer-portal.war/WEB-INF/web.xml
+