Skip to content

Commit

Permalink
Fix identity profile
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeniy-antonyuk committed Feb 13, 2025
1 parent 805c8d2 commit c2464f4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion install/OneClickInstall/install-Docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1285,7 +1285,7 @@ install_product () {
fi

reconfigure ENV_EXTENSION ${ENV_EXTENSION}
reconfigure IDENTITY_PROFILE "${IDENTITY_PROFILE:-"prod"}"
reconfigure IDENTITY_PROFILE "${IDENTITY_PROFILE:-"prod,server"}"
reconfigure APP_CORE_MACHINEKEY ${APP_CORE_MACHINEKEY}
reconfigure APP_CORE_BASE_DOMAIN ${APP_CORE_BASE_DOMAIN}
reconfigure APP_URL_PORTAL "${APP_URL_PORTAL:-"http://${PACKAGE_SYSNAME}-router:8092"}"
Expand Down
2 changes: 1 addition & 1 deletion install/common/product-configuration
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ product_configuration(){
done

echo "ENVIRONMENT=${ENVIRONMENT}" > "$APP_DIR/systemd.env"
echo "SPRING_PROFILES_ACTIVE=prod" >> "$APP_DIR/systemd.env"
echo "SPRING_PROFILES_ACTIVE=prod,server" >> "$APP_DIR/systemd.env"
chmod o-rwx "$APP_DIR/systemd.env"

set_core_machinekey
Expand Down
2 changes: 1 addition & 1 deletion install/docker/.env
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
HELTHCHECKS_HOST=${CONTAINER_PREFIX}healthchecks

# identity #
IDENTITY_PROFILE="dev"
IDENTITY_PROFILE="dev,server"
IDENTITY_AUTHORIZATION_CONTAINER_NAME=${CONTAINER_PREFIX}identity-authorization
IDENTITY_AUTHORIZATION_SERVER_PORT=8080
IDENTITY_API_CONTAINER_NAME=${CONTAINER_PREFIX}identity-api
Expand Down

0 comments on commit c2464f4

Please sign in to comment.