30 lines
1.1 KiB
Django/Jinja
30 lines
1.1 KiB
Django/Jinja
/* {{ ansible_managed }} */
|
|
{
|
|
/* Debug level, one of: debug, info, warn, error ... */
|
|
"loglevel" : "{{ di_smp_loglevel }}",
|
|
/* Path to logfile or null for stdout */
|
|
"logfile": "{{ di_smp_logfile }}",
|
|
|
|
/* Publish proxy bind uri */
|
|
"pub_bind": "{{ di_smp_pub_bind }}",
|
|
/* Subscribe proxy bind uri */
|
|
"sub_bind": "{{ di_smp_sub_bind }}",
|
|
/* Request-Reply proxy bind uri */
|
|
"reqrep_bind": "{{ di_smp_reqrep_bind }}",
|
|
/* logging bind uri */
|
|
"logif_bind": "{{ di_smp_logif_bind }}",
|
|
/* TCP frontend port */
|
|
"tcp_port": {{ di_smp_tcp_port }},
|
|
/* UDP frontend port */
|
|
"udp_port": {{ di_smp_udp_port }},
|
|
|
|
/* Request-Reply workers (default: 2) */
|
|
"reqrep_workers" : {{ di_smp_reqrep_workers }},
|
|
|
|
/* Connection timeout (in milliseconds) (default: 60000 (60 sec)) */
|
|
"connection_timeout_ms" : {{ di_smp_connection_timeout_ms }},
|
|
|
|
/* Queued message reply timeout */
|
|
"queued_message_reply_timeout_sec" : {{ di_smp_queued_message_reply_timeout_sec }}
|
|
}
|