29 lines
773 B
Plaintext
29 lines
773 B
Plaintext
{
|
|
/* Debug level, one of: debug, info, warn, error ... */
|
|
"loglevel" : "info",
|
|
/* Path to logfile or null for stdout */
|
|
"logfile": "/var/log/di/smp.log",
|
|
|
|
/* Publish proxy bind uri */
|
|
"pub_bind": "tcp://127.0.0.1:5000",
|
|
/* Subscribe proxy bind uri */
|
|
"sub_bind": "tcp://127.0.0.1:5001",
|
|
/* Request-Reply proxy bind uri */
|
|
"reqrep_bind": "tcp://127.0.0.1:7000",
|
|
/* logging bind uri */
|
|
"logif_bind": "tcp://127.0.0.1:6000",
|
|
/* TCP frontend port */
|
|
"tcp_port": 4000,
|
|
/* UDP frontend port */
|
|
"udp_port": 4000,
|
|
|
|
/* Request-Reply workers (default: 2) */
|
|
"reqrep_workers" : 5,
|
|
|
|
/* Connection timeout (in milliseconds) (default: 60000 (60 sec)) */
|
|
"connection_timeout_ms" : 90000,
|
|
|
|
/* Queued message reply timeout */
|
|
"queued_message_reply_timeout_sec" : 10
|
|
}
|