-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathapplication.properties
More file actions
31 lines (23 loc) · 1.01 KB
/
application.properties
File metadata and controls
31 lines (23 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# The following config sets the spring context path. You will access the application at
# http://<host-and-port>/<context> e.g. http://localhost:8080/kadmin
#
#server.contextPath=/kadmin
# This active profile sets the application context so that all requests are
# served under /kadmin. See application-kadmin.properties for more information
# or if you need to change the context.
#
spring.profiles.include=kadmin
# Toggles read only mode i.e. Kafka producers are disabled. You can use the following
# Spring profile or the raw config.
#
#spring.profiles.include=readonly
ff.producer.enabled=true
# Allows custom urls to be used for Kafka and Service Registry for each producer and consumer.
#
#
ff.customKafkaUrl.enabled=true
# If ff.customKafkaUrl.enabled is disabled then you need to configure the default endpoints using the following configs
# kafka.host is a comma seperated list of kafka brokers.
#
#kafka.host=host1.bettercloud:6667,host2.bettercloud:6667
#schema.registry.url=http://host3.bettercloud:8081