27 lines
622 B
Plaintext
27 lines
622 B
Plaintext
{
|
|
/* Debug level, one of: debug, info, warn, error ... */
|
|
"loglevel" : "debug",
|
|
|
|
/* Publish proxy bind uri */
|
|
"pub_bind": "tcp://*:@PUB_PORT@",
|
|
/* Subscribe proxy bind uri */
|
|
"sub_bind": "tcp://*:@SUB_PORT@",
|
|
/* Request-Reply proxy bind uri */
|
|
"reqrep_bind": "tcp://*:@REQREP_PORT@",
|
|
/* logging bind uri */
|
|
"logif_bind": "tcp://*:@LOGIF_PORT@",
|
|
/* TCP frontend port */
|
|
"tcp_port": @TCP_PORT@,
|
|
/* UDP frontend port */
|
|
"udp_port": @UDP_PORT@,
|
|
"connection_timeout_udp_ms": 10000,
|
|
|
|
/* User UID */
|
|
"user" : "di",
|
|
/* User GID */
|
|
"group" : "di",
|
|
|
|
"reqrep_workers" : 3,
|
|
"testapplication": "@TEST_FILENAME@"
|
|
}
|