Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Especially for customers using the Tenant Management services, the configuration of the AUTHENTICATION Service has to be adjusted as follows in order to request the /manage endpoints as usual:

Adjust the

...

'authentication-prod.yml' file:

  • Expose the individual /manage endpoints in the section authorization.accesses section.

    Deprecated ConfigurationNew Configuration


    Code Block
    languageyml
    authorization.accesses:
    ### manage-endpoints
      - endpoints: /manage/info,/manage/health
        expose: true



    Code Block
    languageyml
    authorization.accesses:
    ### manage-endpoints
      - endpoints: /manage/**
        expose: true



  • Add the following two lines in order to select the port number 9091 for the /manage endpoints.

    Code Block
    languageyml
    management.server.port: 9091
    management.server.servlet.context-path: /


...