Changeset 3312
- Timestamp:
- 08/23/11 15:42:30
- Files:
-
- trunk/build/bw-deployutil-3.7.jar (modified) (previous)
- trunk/config/bwbuild/jboss-postgresql/synch-config.xml (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/config/bwbuild/jboss-postgresql/synch-config.xml
r3311 r3312 24 24 value="http://128.113.124.225:8080/synch/" /> 25 25 26 <!-- Path to keystore - comment out to use default -->26 <!-- Path to keystore - comment out to use default. Used for ssl etc. --> 27 27 <property name="keystore" 28 28 value="@APPSERVER-DATA-DIR@/synchcerts" /> 29 30 <!-- Public/private key locations --> 31 <property name="privKeys" 32 value="@DATA_DIR@/privkeys" /> 33 <property name="pubKeys" 34 value="@DATA_DIR@/pubkeys" /> 29 35 30 36 <property name="connectors"> … … 43 49 <entry key="bwdemo" 44 50 value="org.bedework.synch.cnctrs.bedework.BedeworkConnector" /> 51 52 <!-- A file connector --> 53 <entry key="read-only-file" 54 value="org.bedework.synch.cnctrs.file.FileConnector" /> 45 55 </map> 46 56 </property> … … 84 94 value="60" /> 85 95 </bean> 96 97 <!-- The connector "file" will load the following config - 98 the suffix "FileConfig" is appended to the connector id --> 99 <bean id="read-only-fileFileConfig" 100 class="org.bedework.synch.cnctrs.file.FileConnectorConfig"> 101 <property name="readOnly" value="true" /> 102 103 <!-- seconds --> 104 <property name="minPoll" value="15" /> 105 </bean> 86 106 </beans>
