[Opensrf-commits] r1564 - trunk/examples
svn at svn.open-ils.org
svn at svn.open-ils.org
Mon Dec 22 15:43:18 EST 2008
Author: dbs
Date: 2008-12-22 15:43:15 -0500 (Mon, 22 Dec 2008)
New Revision: 1564
Modified:
trunk/examples/opensrf_core.xml.example
Log:
Sync up the sample bootstrap conf from rel_1_0 - more explicit public vs. private
Modified: trunk/examples/opensrf_core.xml.example
===================================================================
--- trunk/examples/opensrf_core.xml.example 2008-12-22 20:41:59 UTC (rev 1563)
+++ trunk/examples/opensrf_core.xml.example 2008-12-22 20:43:15 UTC (rev 1564)
@@ -26,16 +26,16 @@
<!-- This is the private router. All applications must register with
this router, so no explicit <services> section is required -->
<name>router</name>
- <domain>localhost</domain>
+ <domain>private.localhost</domain>
</router>
</routers>
<!-- Jabber login settings
Our domain should match that of the private router -->
- <domain>localhost</domain>
- <username>client</username>
- <passwd>mypass</passwd>
+ <domain>private.localhost</domain>
+ <username>opensrf</username>
+ <passwd>password</passwd>
<port>5222</port>
<!-- name of the router used on our private domain.
this should match one of the <name> of the private router above -->
@@ -64,7 +64,7 @@
<!-- Update this if you use ChopChop -->
<chopchop>
<!-- Our jabber server -->
- <domain>localhost</domain>
+ <domain>private.localhost</domain>
<port>5222</port>
<!-- used when multiple servers need to communicate -->
<s2sport>5269</s2sport>
@@ -100,8 +100,8 @@
<!-- The gateway connects to the public domain -->
<domain>public.localhost</domain>
- <username>mylogin</username>
- <passwd>mypassword</passwd>
+ <username>opensrf</username>
+ <passwd>password</passwd>
<port>5222</port>
<logfile>LOCALSTATEDIR/log/gateway.log</logfile>
<loglevel>3</loglevel>
@@ -115,9 +115,9 @@
<trusted_domains>
<!-- allow private services to register with this router
and public clients to send requests to this router. -->
- <server>localhost</server>
+ <server>private.localhost</server>
<!-- also allow private clients to send to the router so it can receive error messages -->
- <client>localhost</client>
+ <client>private.localhost</client>
<client>public.localhost</client>
</trusted_domains>
<transport>
@@ -125,7 +125,7 @@
<port>5222</port>
<unixpath>LOCALSTATEDIR/sock/unix_sock</unixpath>
<username>router</username>
- <password>osrf</password>
+ <password>password</password>
<resource>router</resource>
<connect_timeout>10</connect_timeout>
<max_reconnect_attempts>5</max_reconnect_attempts>
@@ -139,15 +139,15 @@
</router>
<router> <!-- private router -->
<trusted_domains>
- <server>localhost</server>
+ <server>private.localhost</server>
<!-- only clients on the private domain can send requests to this router -->
- <client>localhost</client>
+ <client>private.localhost</client>
</trusted_domains>
<transport>
- <server>localhost</server>
+ <server>private.localhost</server>
<port>5222</port>
<username>router</username>
- <password>osrf</password>
+ <password>password</password>
<resource>router</resource>
<connect_timeout>10</connect_timeout>
<max_reconnect_attempts>5</max_reconnect_attempts>
More information about the opensrf-commits
mailing list