55 lines
2.1 KiB
Plaintext
55 lines
2.1 KiB
Plaintext
#******************************************************************************
|
|
#* storeserver main config file
|
|
#******************************************************************************
|
|
|
|
#******************************************************************************
|
|
#* The kvmstoreserver was compiled with the configPoller extension. This means
|
|
#* that changes to this config file can be captured after 60 seconds and
|
|
#* loaded at runtime of the kvmstoreserver. Not all of the parameters listed
|
|
#* below can be updated at runtime. Parameters with the comment label DYNAMIC
|
|
#* can be updated at runtime. Parameters with the label STATIC did not belong.
|
|
#*
|
|
#* Caution when updating DYNAMIC parameters.
|
|
#* In case of incorrect entries, the kvmstoreserver can crash!
|
|
#*
|
|
#******************************************************************************
|
|
|
|
|
|
###################### General Server settings ################################
|
|
|
|
# DINAMIC
|
|
storage_target = /home/kvmstoreserver/kvmstoreserver/warehouse
|
|
|
|
# DINAMIC
|
|
serde_driver = filesystem
|
|
|
|
# All log file parameters -> STATIC
|
|
default_log_file = /home/kvmstoreserver/kvmstoreserver/var/log/kvmstoreserver.log
|
|
log_max_size_mb = 100
|
|
log_max_age_days = 30
|
|
log_write_to_console = false
|
|
|
|
|
|
######################### HTTP Server settings ###############################
|
|
|
|
# All HTTP Server Settings -> STATIC
|
|
http_hostname =
|
|
http_port = 3344
|
|
read_header_timeout = 30
|
|
read_timeout = 30
|
|
write_timeout = 30
|
|
tcp_idle_timeout_millsec = 100
|
|
|
|
########################### Http Route settings ##############################
|
|
### Attention, the maximum path length per route is reduced to 1. Longer paths,
|
|
### such as /controller/add/ are not allowed and cause errors
|
|
|
|
### All routes that work with JSON documents must always have an end slash in
|
|
### the name such as /add"/"
|
|
|
|
# All Controller parameter -> STATIC
|
|
ctrl_add_path = /add/
|
|
ctrl_get_path = /get/
|
|
ctrl_del_path = /del/
|
|
ctrl_tree_path = /tree
|
|
ctrl_version_path = /version |