]> git.evergreen-ils.org Git - Evergreen.git/blob - OpenSRF/src/router/router_config.xml.example
c4c11e7d1980e952c577faf296f122c7d3ffb61b
[Evergreen.git] / OpenSRF / src / router / router_config.xml.example
1 <router>
2
3         <component>0</component> <!-- leave disabled for now -->
4
5         <trusted_domains>
6
7                 <!-- 
8                         Trusted servers are allowed to register apps with the router 
9                 -->
10                 <server1>server1.domain.com</server1>
11                 <server2>server2.domain.com</server2>
12
13                 <!--
14                         Trusted clients are allowed to send queries to the router
15                 -->
16                 <client1>client1.domain.com</client1>
17                 <client2>client2.domain.com</client2>
18
19         </trusted_domains>
20
21         <transport>
22                 <server>jabber_server.domain.com</server>
23                 <port>5222</port>
24                 <username>router</username>
25                 <password>my_password</password>
26                 <resource>router</resource>
27                 <connect_timeout>10</connect_timeout>
28                 <max_reconnect_attempts>5</max_reconnect_attempts>
29         </transport>
30
31         <log>
32                 <file>/pines/log/router.log</file>
33
34                 <!--    
35                         0 No logging
36                         1 Error logging
37                         2 Warning
38                         3 Info 
39                         4 debug
40                 -->
41                 <level>4</level>
42         </log>
43
44
45 </router>