]> git.evergreen-ils.org Git - Evergreen.git/blob - OpenSRF/src/gateway/gateway.xml.example
43cebbd54db0d4b912241abd00973aeee3ec9be8
[Evergreen.git] / OpenSRF / src / gateway / gateway.xml.example
1 <!-- Bootstrap config file for the C opensrf_stack library -->
2 <config>
3         <bootstrap>
4                 <!-- log level (WARN, INFO, DEBUG) -->
5                 <debug>INFO</debug>
6
7                 <!-- best to leave this untouched if possible -->
8                 <router_name>router</router_name>
9
10                 <!-- jabber domains to connect to (domain1, domain2, ...) -->
11                 <domains>
12                         <domain1>host.example.com</domain1>
13                 </domains>
14
15                 <!-- jabber connection information. Note that unix socket connectes are
16                                 not yet implemented with any of the C libraries so port will 
17                                 have to be a port number -->
18                 <username>my_jabber_login</username>
19                 <passwd>my_jabber_password</passwd>
20                 <port>5222</port>
21
22         </bootstrap>
23
24         <!-- log file location -->
25         <logs>
26                 <client>/path/to/log/gateway.log</client>
27         </logs>
28
29 </config>