Versions Compared

Key

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

...

Configuration NameDescriptionDefault BehaviorDomain
admin.listenersControl where the admin endpoint will be made available.the endpoint will be added to the rest of Connect's existing endpoints 

List of comma-separated URIs the REST API will listen on. An empty or blank string will disable this feature.

admin.listeners.https.Prefix for SSL settings when using HTTPS Look at Connect REST docs for a list of supported configs that can go that  with this prefix.Look at Connect REST docs for a list of supported configs that can go with this prefix.

...

Code Block
languagebash
admin.listeners="http://localhost:9093"

Example 3: Use a separate listener for /admin (https)

...

Code Block
languagebash
admin.listeners="https://localhost:9093"
admin.listeners.https.ssl.truststore.location=/path/to/truststore.jks
admin.listeners.https.ssl.truststore.password=tpass
admin.listeners.https.ssl.keystore.location=/path/to/keystore.jks
admin.listeners.https.ssl.keystore.password=kpass

...