39 lines
1.3 KiB
INI
39 lines
1.3 KiB
INI
##############################################################
|
|
# Groupware REST API SETTINGS
|
|
|
|
# Number of worker processes.
|
|
num_workers = 2
|
|
|
|
# Disable TLS validation for all client request.
|
|
# When set to yes, TLS certificate validation is turned off. This is insecure
|
|
# and should not be used in production setups.
|
|
#insecure = no
|
|
|
|
# Path where to create the gc-rest sockets.
|
|
#socket_path = /var/run/kopano-grapi
|
|
|
|
# Socket to find the connection to the storage server.
|
|
# Use https to reach servers over the network.
|
|
#server_socket = file:///var/run/kopano/server.sock
|
|
|
|
# Path where to store persistent runtime data.
|
|
#persistency_path = /var/lib/kopano-grapi
|
|
|
|
# Path where to find translation catalogs.
|
|
#translations_path = /usr/share/kopano-grapi/i18n
|
|
|
|
# The API includes experimental endpoints which are not yet recommended to run
|
|
# in production setups and are thus disabled by default. When set to yes, all
|
|
# endpoints marked experimental are made available. Defaults to no.
|
|
#enable_experimental_endpoints = yes
|
|
|
|
###############################################################
|
|
# Log settings
|
|
|
|
# Log level controls the verbosity of the output log. It can be one of
|
|
# `critical`, `error`, `warning`, `info` or `debug`. Defaults to `info`.
|
|
log_level = info
|
|
log_method = file
|
|
log_file = /var/log/kopano/server.log
|
|
|