]> git.evergreen-ils.org Git - OpenSRF.git/blob - examples/opensrf_core.xml.example
Minor cleanup:
[OpenSRF.git] / examples / opensrf_core.xml.example
1 <?xml version="1.0"?>
2 <!-- 
3 vim:et:ts=2:sw=2:
4 -->
5 <config>
6
7   <!-- bootstrap config for OpenSRF apps -->
8   <opensrf>
9
10     <routers>
11
12       <!-- define the list of routers our services will register with -->
13
14       <router>
15
16         <!-- This is the public router.  On this router, we only register applications
17              which should be accessible to everyone on the opensrf network -->
18         <name>router</name>
19         <domain>public.localhost</domain>
20         <services>
21             <service>opensrf.math</service> 
22         </services>
23       </router>
24
25       <router>
26         <!-- This is the private router.  All applications must register with 
27             this router, so no explicit <services> section is required -->
28         <name>router</name>
29         <domain>private.localhost</domain>
30       </router>
31     </routers>
32
33
34     <!-- Jabber login settings
35         Our domain should match that of the private router -->
36     <domain>private.localhost</domain>
37     <username>opensrf</username>
38     <passwd>password</passwd>
39     <port>5222</port>
40     <!-- name of the router used on our private domain.  
41         this should match one of the <name> of the private router above -->
42     <router_name>router</router_name>
43
44     <!-- log file settings ======================================  -->
45     <!-- log to a local file -->
46     <logfile>LOCALSTATEDIR/log/osrfsys.log</logfile>
47
48     <!-- Log to syslog. You can use this same layout for 
49         defining the logging of all services in this file -->
50     <!--
51     <logfile>syslog</logfile>
52     <syslog>local2</syslog>
53     <actlog>local1</actlog>
54     -->
55
56     <!-- 0 None, 1 Error, 2 Warning, 3 Info, 4 debug, 5 Internal (Nasty) -->
57     <loglevel>3</loglevel>
58
59     <!-- config file for the services -->
60     <settings_config>SYSCONFDIR/opensrf.xml</settings_config>
61
62   </opensrf>
63
64   <!-- Update this if you use ChopChop -->
65   <chopchop>
66     <!-- Our jabber server -->
67     <domain>private.localhost</domain>
68     <port>5222</port>
69     <!-- used when multiple servers need to communicate -->
70     <s2sport>5269</s2sport>
71     <secret>secret</secret>
72     <listen_address>10.0.0.3</listen_address>
73     <loglevel>3</loglevel>
74     <logfile>LOCALSTATEDIR/log/osrfsys.log</logfile>
75   </chopchop>
76
77   <!-- The section between <gateway>...</gateway> is a standard OpenSRF C stack config file -->
78   <gateway>
79
80     <!--
81     we consider ourselves to be the "originating" client for requests,
82     which means we define the log XID string for log traces
83     -->
84     <client>true</client>
85
86     <!--  the routers's name on the network -->
87     <router_name>router</router_name>
88
89     <!-- jabber login info -->
90     <!-- The gateway connects to the public domain -->
91     <domain>public.localhost</domain>
92     <username>opensrf</username>
93     <passwd>password</passwd>
94     <port>5222</port>
95     <logfile>LOCALSTATEDIR/log/gateway.log</logfile>
96     <loglevel>3</loglevel>
97
98   </gateway>
99
100   <!-- ======================================================================================== -->
101
102     <routers>
103         <router> <!-- public router -->
104             <trusted_domains>
105                 <!-- allow private services to register with this router 
106                      and public clients to send requests to this router. -->
107                 <server>private.localhost</server>
108                 <!-- also allow private clients to send to the router so it can receive error messages -->
109                 <client>private.localhost</client>
110                 <client>public.localhost</client>
111             </trusted_domains>
112             <transport>
113                 <server>public.localhost</server>
114                 <port>5222</port>
115                 <unixpath>LOCALSTATEDIR/sock/unix_sock</unixpath>
116                 <username>router</username>
117                 <password>password</password>
118                 <resource>router</resource>
119                 <connect_timeout>10</connect_timeout>
120                 <max_reconnect_attempts>5</max_reconnect_attempts>
121             </transport>
122             <logfile>LOCALSTATEDIR/log/router.log</logfile>
123             <!--
124             <logfile>syslog</logfile>
125             <syslog>local2</syslog>
126             -->
127             <loglevel>2</loglevel>
128         </router>
129         <router> <!-- private router -->
130             <trusted_domains>
131                 <server>private.localhost</server>
132                 <!-- only clients on the private domain can send requests to this router -->
133                 <client>private.localhost</client>
134             </trusted_domains>
135             <transport>
136                 <server>private.localhost</server>
137                 <port>5222</port>
138                 <username>router</username>
139                 <password>password</password>
140                 <resource>router</resource>
141                 <connect_timeout>10</connect_timeout>
142                 <max_reconnect_attempts>5</max_reconnect_attempts>
143             </transport>
144             <logfile>LOCALSTATEDIR/log/router.log</logfile>
145             <!--
146             <logfile>syslog</logfile>
147             <syslog>local2</syslog>
148             -->
149             <loglevel>4</loglevel>
150         </router>
151     </routers>
152
153   <!-- ======================================================================================== -->
154
155 </config>