42 lines
1.6 KiB
Bash
42 lines
1.6 KiB
Bash
#!/bin/bash
|
|
|
|
## Deploy and configure all examples
|
|
|
|
# Deploy examples
|
|
cd /keycloak-docker-cluster/examples
|
|
for I in $(find . | grep .war$); do cp $I $JBOSS_HOME/standalone/deployments/; done;
|
|
|
|
# Explode wars
|
|
cd $JBOSS_HOME/standalone/deployments/
|
|
for I in $(ls -d *.war | grep -v auth-server.war); do
|
|
echo "Configuring $I";
|
|
mkdir $I.tmp;
|
|
cd $I.tmp;
|
|
unzip -q ../$I;
|
|
cd ..
|
|
rm $I;
|
|
mv $I.tmp $I;
|
|
touch $I.dodeploy;
|
|
done;
|
|
|
|
|
|
# Configure admin-access.war
|
|
sed -i -e 's/false/true/' admin-access.war/WEB-INF/web.xml
|
|
|
|
# Enforce refreshing token for product-portal and customer-portal war
|
|
# sed -i -e 's/\"\/auth\",/&\n \"always-refresh-token\": true,/' customer-portal.war/WEB-INF/keycloak.json;
|
|
# sed -i -e 's/\"\/auth\",/&\n \"always-refresh-token\": true,/' product-portal.war/WEB-INF/keycloak.json;
|
|
|
|
# Configure other examples
|
|
for I in *.war/WEB-INF/keycloak.json; do
|
|
sed -i -e 's/\"auth-server-url\".*: \"\/auth\",/&\n \"auth-server-url-for-backend-requests\": \"http:\/\/\$\{jboss.host.name\}:8080\/auth\",/' $I;
|
|
done;
|
|
|
|
# Enable distributable for customer-portal
|
|
sed -i -e 's/<\/module-name>/&\n <distributable \/>/' customer-portal.war/WEB-INF/web.xml
|
|
|
|
# Configure testrealm.json - Enable adminUrl to access adapters on local machine
|
|
sed -i -e 's/\"adminUrl\": \"\/customer-portal/\"adminUrl\": \"http:\/\/\$\{jboss.host.name\}:8080\/customer-portal/' /keycloak-docker-cluster/examples/testrealm.json
|
|
sed -i -e 's/\"adminUrl\": \"\/product-portal/\"adminUrl\": \"http:\/\/\$\{jboss.host.name\}:8080\/product-portal/' /keycloak-docker-cluster/examples/testrealm.json
|
|
|
|
|