summarylogtreecommitdiffstats
path: root/kafka-manager.conf
diff options
context:
space:
mode:
authorCedric Meury2016-05-09 20:50:29 +1000
committerCedric Meury2016-05-09 20:50:29 +1000
commit4bc7fe3aa7f8ae8d5ef45a2a562bb4644cbbcc51 (patch)
treecc997711f8fe8604edfc0cdd13e87c82407dddc4 /kafka-manager.conf
downloadaur-4bc7fe3aa7f8ae8d5ef45a2a562bb4644cbbcc51.tar.gz
first working package for kafka-manager on arch
Diffstat (limited to 'kafka-manager.conf')
-rw-r--r--kafka-manager.conf44
1 files changed, 44 insertions, 0 deletions
diff --git a/kafka-manager.conf b/kafka-manager.conf
new file mode 100644
index 000000000000..c8819a7d4d08
--- /dev/null
+++ b/kafka-manager.conf
@@ -0,0 +1,44 @@
+# Copyright 2015 Yahoo Inc. Licensed under the Apache License, Version 2.0
+# See accompanying LICENSE file.
+
+# This is the main configuration file for the application.
+# ~~~~~
+
+# Secret key
+# ~~~~~
+# The secret key is used to secure cryptographics functions.
+# If you deploy your application to several instances be sure to use the same key!
+
+# CAUTION:
+# "Anyone that can get access to the secret will be able to generate any session they please,
+# effectively allowing them to log in to your system as any user they please. Hence it is
+# strongly recommended that you do not check your application secret into source control."
+# Source: https://www.playframework.com/documentation/2.5.x/ApplicationSecret
+
+play.crypto.secret="^<csmm5Fx4d=r2HEX8pelM3iBkFVv?k[mc;IZE<_Qoq8EkX_/7@Zt6dP05Pzea3U"
+play.crypto.secret=${?APPLICATION_SECRET}
+
+# The application languages
+# ~~~~~
+play.i18n.langs=["en"]
+
+play.http.requestHandler = "play.http.DefaultHttpRequestHandler"
+
+play.application.loader=loader.KafkaManagerLoader
+
+kafka-manager.zkhosts="localhost:2181"
+kafka-manager.zkhosts=${?ZK_HOSTS}
+pinned-dispatcher.type="PinnedDispatcher"
+pinned-dispatcher.executor="thread-pool-executor"
+application.features=["KMClusterManagerFeature","KMTopicManagerFeature","KMPreferredReplicaElectionFeature","KMReassignPartitionsFeature"]
+
+akka {
+ loggers = ["akka.event.slf4j.Slf4jLogger"]
+ loglevel = "INFO"
+}
+
+basicAuthentication.enabled=false
+basicAuthentication.username="admin"
+basicAuthentication.password="password"
+basicAuthentication.realm="Kafka-Manager"
+