Skip to content
Snippets Groups Projects
Commit 10fed447 authored by Leonardo Menezes's avatar Leonardo Menezes
Browse files

enable gzip when requesting data from es

parent 241cfbb4
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,10 @@ rest.history.size = 50 // defaults to 50 if not specified
#data.path: "/var/lib/cerebro/cerebro.db"
data.path = "./cerebro.db"
es = {
gzip = true
}
# Authentication
auth = {
# Example of LDAP authentication
......
......@@ -2,6 +2,11 @@
secret = "changeme"
play.crypto.secret = ${secret}
es {
gzip = false
}
play.ws.compressionEnabled = ${es.gzip}
# The application languages
play.i18n.langs = ["en"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment