... | ... |
@@ -25,7 +25,7 @@ Gergely Kovacs |
25 | 25 |
5.6. callid_cache_limit (integer) |
26 | 26 |
5.7. certificate_cache_limit (integer) |
27 | 27 |
5.8. cainfo_path (string) |
28 |
- 5.9. accept_pem_certs ([0|1]) |
|
28 |
+ 5.9. accept_pem_certs (int) |
|
29 | 29 |
|
30 | 30 |
6. Functions |
31 | 31 |
|
... | ... |
@@ -91,7 +91,7 @@ Chapter 1. Admin Guide |
91 | 91 |
5.6. callid_cache_limit (integer) |
92 | 92 |
5.7. certificate_cache_limit (integer) |
93 | 93 |
5.8. cainfo_path (string) |
94 |
- 5.9. accept_pem_certs ([0|1]) |
|
94 |
+ 5.9. accept_pem_certs (int) |
|
95 | 95 |
|
96 | 96 |
6. Functions |
97 | 97 |
|
... | ... |
@@ -174,7 +174,7 @@ Chapter 1. Admin Guide |
174 | 174 |
5.6. callid_cache_limit (integer) |
175 | 175 |
5.7. certificate_cache_limit (integer) |
176 | 176 |
5.8. cainfo_path (string) |
177 |
- 5.9. accept_pem_certs ([0|1]) |
|
177 |
+ 5.9. accept_pem_certs (int) |
|
178 | 178 |
|
179 | 179 |
5.1. privatekey_path (string) |
180 | 180 |
|
... | ... |
@@ -296,11 +296,12 @@ modparam("auth_identity","certificate_cache_limit",4096) |
296 | 296 |
modparam("auth_identity","cainfo_path","/etc/ssl/certs/ca-certificates.crt") |
297 | 297 |
... |
298 | 298 |
|
299 |
-5.9. accept_pem_certs ([0|1]) |
|
299 |
+5.9. accept_pem_certs (int) |
|
300 | 300 |
|
301 | 301 |
Note: this parameter is for verifier service. |
302 | 302 |
|
303 | 303 |
Enables the acquired certificate processing if it is in PEM format. |
304 |
+ Value can be 0 or 1. |
|
304 | 305 |
|
305 | 306 |
This parameter is optional. The default value is "0". |
306 | 307 |
|
... | ... |
@@ -213,7 +213,8 @@ modparam("db_cluster", "max_query_length", 5) |
213 | 213 |
modparam("db_cluster", "connection", |
214 | 214 |
"c1=>mysql://kamailio:kamailiorw@localhost/kamailio1") |
215 | 215 |
modparam("db_cluster", "connection", |
216 |
- "c2=>mysql://kamailio:kamailiorw@localhost/kamailio2") |
|
216 |
+ "c2=>mysql://kamailio:kamailiorw@remotehost/kamailio2") |
|
217 |
+ |
|
217 | 218 |
modparam("db_cluster", "cluster", "k1=>c1=9r9p;c2=9r9p") |
218 | 219 |
|
219 | 220 |
modparam("acc", "db_url", "cluster://k1") |
... | ... |
@@ -320,7 +320,7 @@ modparam("rtimer", "timer", "name=tjobs;interval=300;mode=1;") |
320 | 320 |
modparam("rtimer", "exec", "timer=tjobs;route=TCLEAN") |
321 | 321 |
... |
322 | 322 |
route[TCLEAN] { |
323 |
- exec_cmd("find /tmp -type f -name kamailio-sipdump-* -mtime +1 -delete &"); |
|
323 |
+ exec_cmd("find /tmp -type f -name kamailio-sipdump-* -mtime +2 -delete &"); |
|
324 | 324 |
} |
325 | 325 |
... |
326 | 326 |
|