Public Base URL

For some functions, an externally reachable base URL (e.g. “https://disy.net/cadenza") must be defined for the Cadenza installation, e.g. for sending notification emails when the subscription function is activated.

Although the URL is optional, it is mandatory for the following functions:

Otherwise Cadenza will not start.

Adjusting the Configuration

To specify the base URL, publicCadenzaUrl in the basicweb settings must be configured according to the following example:

  • XML

  • YAML

  • Environment Variables

basicweb-config.xml configuration file
<basicWebConfiguration>
  ...
  <publicCadenzaUrl>https://disy.net/cadenza</publicCadenzaUrl>
  ...
</basicWebConfiguration>
myConfig.yaml
cadenzaconfig:
  ...
    basicweb:
      ...
      publicCadenzaUrl: https://disy.net/cadenza

  ...