Skip to content
Snippets Groups Projects
warden-client.conf 2.19 KiB
Newer Older
Tomáš Plesník's avatar
Tomáš Plesník committed
#
# warden-client.conf - configuration file for the warden sender/receiver client
#

#-------------------------------------------------------------------------------
Tomáš Plesník's avatar
Tomáš Plesník committed
#-------------------------------------------------------------------------------
$URI = "https://warden-dev.cesnet.cz:443/Warden";

#-------------------------------------------------------------------------------
# SSL_KEY_FILE - path to client SSL certificate key file
#-------------------------------------------------------------------------------
$SSL_KEY_FILE = "/opt/warden-client/etc/warden-dev.cesnet.cz.key";
Tomáš Plesník's avatar
Tomáš Plesník committed

#-------------------------------------------------------------------------------
# SSL_CERT_FILE - path to client SSL certificate file
#-------------------------------------------------------------------------------
$SSL_CERT_FILE = "/opt/warden-client/etc/warden-dev.cesnet.cz.pem";
Tomáš Plesník's avatar
Tomáš Plesník committed

#-------------------------------------------------------------------------------
# SSL_CA_FILE - path to CA certificate file
#-------------------------------------------------------------------------------
$SSL_CA_FILE = "/etc/ssl/certs/tcs-ca-bundle.pem";
#-------------------------------------------------------------------------------
# MAX_RCV_EVENTS_LIMIT - maximum number of events the client is allowd to get
#                        from the Warden server in one batch
#-------------------------------------------------------------------------------
$MAX_RCV_EVENTS_LIMIT = 6000; #consumes app. 250 MB of memory
#-------------------------------------------------------------------------------
# Log options
#
# LOG_STDERR, LOG_SYSLOG - hide (0) or allow (1) error reporting on STDERR
#                          and/or to Syslog
# LOG_STDERR_VERBOSE, LOG_SYSLOG_VERBOSE - print only error message without
#                                          a stack (0) or print debug info
#                                          including err. message and stack (1)
#-------------------------------------------------------------------------------
$LOG_STDERR = 0;                        
$LOG_STDERR_VERBOSE = 0;                              

$LOG_SYSLOG = 1;   
$LOG_SYSLOG_FACILITY = "local7"; 
$LOG_SYSLOG_VERBOSE = 1;