Add HTTP GZip compression

This commit is contained in:
Vikram Rangnekar
2019-12-31 01:30:20 -05:00
parent 343589c3bd
commit a40bd7fca5
16 changed files with 204 additions and 194 deletions

View File

@ -5,6 +5,9 @@ web_ui: true
# debug, info, warn, error, fatal, panic
log_level: "debug"
# enable or disable http compression (uses gzip)
http_compress: true
# When production mode is 'true' only queries
# from the allow list are permitted.
# When it's 'false' all queries are saved to the
@ -97,6 +100,7 @@ database:
# Enable this if you need the user id in triggers, etc
set_user_id: false
# database ping timeout is used for db health checking
ping_timeout: 1m
# Define additional variables here to be used with filters

View File

@ -9,6 +9,9 @@ web_ui: false
# debug, info, warn, error, fatal, panic, disable
log_level: "info"
# enable or disable http compression (uses gzip)
http_compress: true
# When production mode is 'true' only queries
# from the allow list are permitted.
# When it's 'false' all queries are saved to the
@ -56,4 +59,5 @@ database:
# Enable this if you need the user id in triggers, etc
set_user_id: false
ping_timeout: 5m
# database ping timeout is used for db health checking
ping_timeout: 5m