23 lines
835 B
Django/Jinja
23 lines
835 B
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-Subscribe proxy bind uri */
|
|
"pubsub_bind": "{{ di_smp_pubsub_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 }},
|
|
|
|
/* 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 }}
|
|
}
|