Search code examples
cloud-foundrycloudfoundry-uaa

Disabling UAA default Web UI application


I want to disable the UAA's default Web UI application and use a custom one instead so I can show more informations to the user and give him the ability to perform more tasks. UAA default web application allow very basic operations like updating the email or password only.

UAA is available at a domain like: https://account.example.com, I want to display a custom application when the user goes to this endpoint.

The documentation states (here):

The UAA provides endpoints that facilitate the use of an external login server. A server that handles the UI for browser based actions.

That was mentioned here as well.

How this can be accomplished?


Solution

  • Check out this script which will unpack a .war, add in your customized templates and resources, and pack up the .war again

    https://github.com/starkandwayne/quick-uaa-deployment-cf/blob/master/bin/customize-uaa-war

    Helpful?