aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-06-08 21:12:01 +0100
committerJustin Clark-Casey (justincc)2010-06-08 21:16:19 +0100
commit5f60eb136e274d94806adf6645c3ed3a69ed28e0 (patch)
tree7b87f0b660f57e8ff7bc8c9ccaf78076196c494d
parentbackport xmlrpcgroups cache from master (diff)
downloadopensim-SC_OLD-5f60eb136e274d94806adf6645c3ed3a69ed28e0.zip
opensim-SC_OLD-5f60eb136e274d94806adf6645c3ed3a69ed28e0.tar.gz
opensim-SC_OLD-5f60eb136e274d94806adf6645c3ed3a69ed28e0.tar.bz2
opensim-SC_OLD-5f60eb136e274d94806adf6645c3ed3a69ed28e0.tar.xz
Improve instructions for [Groups] setup in OpenSim.ini.example
-rw-r--r--bin/OpenSim.ini.example27
1 files changed, 15 insertions, 12 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index 37c0192..aeece9c 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -1290,39 +1290,42 @@
1290[Groups] 1290[Groups]
1291 Enabled = false 1291 Enabled = false
1292 1292
1293 ; This is the current groups stub in Region.CoreModules.Avatar.Groups 1293 ; This is the current groups stub in Region.CoreModules.Avatar.Groups. All the other settings below only really
1294 ; apply to the Flotsam/SimianGrid GroupsModule
1294 Module = Default 1295 Module = Default
1295 1296
1296 ; The PHP code for the server is available from the Flotsam project for you to deploy 1297 ; This module can use a PHP XmlRpc server from the Flotsam project at http://code.google.com/p/flotsam/
1297 ; to your own server. The Flotsam project is located at http://code.google.com/p/flotsam/ 1298 ; or from the SimianGrid project at http://code.google.com/p/openmetaverse
1298 ;
1299 ;Module = GroupsModule 1299 ;Module = GroupsModule
1300 1300
1301 ; Enable Group Notices 1301 ; Enable Group Notices
1302 ;NoticesEnabled = true 1302 ;NoticesEnabled = true
1303 1303
1304 ; This makes the Groups modules very chatty on the console. 1304 ; This makes the Groups modules very chatty on the console.
1305 DebugEnabled = false 1305 DebugEnabled = false
1306 1306
1307 ; Specify which messaging module to use for groups messaging and if it's enabled 1307 ; Specify which messaging module to use for groups messaging and if it's enabled
1308 ;MessagingModule = GroupsMessagingModule 1308 ;MessagingModule = GroupsMessagingModule
1309 ;MessagingEnabled = true 1309 ;MessagingEnabled = true
1310 1310
1311 ; Service connector to Groups Service [Select One] ServicesConnectorModule 1311 ; Service connectors to the Groups Service. Select one depending on whether you're using a Flotsam XmlRpc backend or a SimianGrid backend
1312
1313 ; SimianGrid Service for Groups
1314 ;ServicesConnectorModule = SimianGroupsServicesConnector
1315 ;GroupsServerURI = http://mygridserver.com:82/Grid/
1312 1316
1313 ; XmlRpc Service Connector to the Flotsam XmlRpc Groups Service settings 1317 ; Flotsam XmlRpc Service for Groups
1314 ;ServicesConnectorModule = XmlRpcGroupsServicesConnector 1318 ;ServicesConnectorModule = XmlRpcGroupsServicesConnector
1315 ;GroupsServerURI = http://yourxmlrpcserver.com/xmlrpc.php 1319 ;GroupsServerURI = http://yourxmlrpcserver.com/xmlrpc.php
1316 1320
1317 ; XmlRpc Service Settings 1321 ; XmlRpc Security settings. These must match those set on your backend groups service.
1318 ;XmlRpcServiceReadKey = 1234 1322 ;XmlRpcServiceReadKey = 1234
1319 ;XmlRpcServiceWriteKey = 1234 1323 ;XmlRpcServiceWriteKey = 1234
1320 1324
1321 ; Disables HTTP Keep-Alive for XmlRpcGroupsServicesConnector HTTP Requests, 1325 ; Disables HTTP Keep-Alive for XmlRpcGroupsServicesConnector HTTP Requests,
1322 ; this is a work around fora problem discovered on some Windows based region servers. 1326 ; this is a work around fora problem discovered on some Windows based region servers.
1323 ; Only disable keep alive if you see a large number (dozens) of the following Exceptions: 1327 ; Only disable keep alive if you see a large number (dozens) of the following Exceptions:
1324 ; System.Net.WebException: The request was aborted: The request was canceled. 1328 ; System.Net.WebException: The request was aborted: The request was canceled.
1325 ;
1326 ; XmlRpcDisableKeepAlive = false 1329 ; XmlRpcDisableKeepAlive = false
1327 1330
1328 1331