Skip to content
Snippets Groups Projects
Commit a508bf2f authored by Jan Soukal's avatar Jan Soukal
Browse files

doplnen CONNECTION_TIMEOUT do konfiguraku

parent f6f2753c
No related branches found
No related tags found
No related merge requests found
...@@ -5,17 +5,17 @@ ...@@ -5,17 +5,17 @@
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# URI - URI address of Warden server # URI - URI address of Warden server
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$URI = "https://warden-dev.cesnet.cz:443/Warden"; $URI = "https://warden-c.cesnet.cz:443/Warden";
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# SSL_KEY_FILE - path to client SSL certificate key file # SSL_KEY_FILE - path to client SSL certificate key file
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$SSL_KEY_FILE = "/opt/warden-client/etc/warden-dev.cesnet.cz.key"; $SSL_KEY_FILE = "/home/soukal/client-test/2.0.0_beta/warden-client/etc/warden-c.cesnet.cz.key";
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# SSL_CERT_FILE - path to client SSL certificate file # SSL_CERT_FILE - path to client SSL certificate file
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$SSL_CERT_FILE = "/opt/warden-client/etc/warden-dev.cesnet.cz.pem"; $SSL_CERT_FILE = "/home/soukal/client-test/2.0.0_beta/warden-client/etc/warden-c.cesnet.cz.pem";
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# SSL_CA_FILE - path to CA certificate file # SSL_CA_FILE - path to CA certificate file
...@@ -28,6 +28,14 @@ $SSL_CA_FILE = "/etc/ssl/certs/tcs-ca-bundle.pem"; ...@@ -28,6 +28,14 @@ $SSL_CA_FILE = "/etc/ssl/certs/tcs-ca-bundle.pem";
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$MAX_RCV_EVENTS_LIMIT = 6000; #consumes app. 250 MB of memory $MAX_RCV_EVENTS_LIMIT = 6000; #consumes app. 250 MB of memory
#-------------------------------------------------------------------------------
# CONNECTION_TIMEOUT - interval in seconds to timeout connection with Warden
# server. If your client timeouts, consider using higher
# timeout number. Also, in case of receiving clients, you
# can optimize the MAX_RCV_EVENTS_LIMIT value.
#-------------------------------------------------------------------------------
$CONNETCTION_TIMEOUT = 60;
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# Log options # Log options
# #
...@@ -37,14 +45,15 @@ $MAX_RCV_EVENTS_LIMIT = 6000; #consumes app. 250 MB of memory ...@@ -37,14 +45,15 @@ $MAX_RCV_EVENTS_LIMIT = 6000; #consumes app. 250 MB of memory
# a stack (0) or print debug info # a stack (0) or print debug info
# including err. message and stack (1) # including err. message and stack (1)
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$LOG_STDERR = 1; $LOG_STDERR = 1;
$LOG_SYSLOG = 1; $LOG_SYSLOG = 0;
$LOG_SYSLOG_FACILITY = "local7"; $LOG_SYSLOG_FACILITY = "local7";
$LOG_VERBOSE = 0; $LOG_VERBOSE = 1;
1; 1;
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment