aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/OpenSim.ini.example
diff options
context:
space:
mode:
Diffstat (limited to 'bin/OpenSim.ini.example')
-rw-r--r--bin/OpenSim.ini.example74
1 files changed, 55 insertions, 19 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index 7e7b231..c8c5ed3 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -342,6 +342,21 @@
342 ;; - "Imprudence 1.3.1" has access 342 ;; - "Imprudence 1.3.1" has access
343 ; BannedViewerList = 343 ; BannedViewerList =
344 344
345 ;# {HomeURI} {Hypergrid} {The Home URL of this world} {}
346 ;; If this is a standalone world, this is the address of this instance.
347 ;; If this is a grided simulator, this is the address of the external robust server that
348 ;; runs the UserAgentsService.
349 ;; For example http://myworld.com:9000 or http://myworld.com:8002
350 ;; This is a default that can be overwritten in some sections.
351 ; HomeURI = "http://127.0.0.1:9000"
352
353 ;# {GatekeeperURI} {Hypergrid} {The URL of the gatekeeper of this world} {}
354 ;; If this is a standalone world, this is the address of this instance.
355 ;; If this is a grided simulator, this is the address of the external robust server
356 ;; that runs the Gatekeeper service.
357 ;; For example http://myworld.com:9000 or http://myworld.com:8002
358 ;; This is a default that can be overwritten in some sections.
359 ; GatekeeperURI = "http://127.0.0.1:9000"
345 360
346[Estates] 361[Estates]
347 ; If these values are commented out then the user will be asked for estate details when required (this is the normal case). 362 ; If these values are commented out then the user will be asked for estate details when required (this is the normal case).
@@ -527,14 +542,20 @@
527 542
528 543
529[Messaging] 544[Messaging]
530 ;# {OfflineMessageModule} {} {Module to use for offline message storage} {OfflineMessageModule *} 545 ;# {OfflineMessageModule} {} {Module to use for offline message storage} {OfflineMessageModule "Offline Message Module V2" *}
531 ;; Module to handle offline messaging. The core module requires an external 546 ;; Module to handle offline messaging. The core module requires an external
532 ;; web service to do this. See OpenSim wiki. 547 ;; web service to do this. See OpenSim wiki.
533 ; OfflineMessageModule = OfflineMessageModule 548 ; OfflineMessageModule = OfflineMessageModule
549 ;; Or, alternatively, use this one, which works for both standalones and grids
550 ; OfflineMessageModule = "Offline Message Module V2"
534 551
535 ;# {OfflineMessageURL} {OfflineMessageModule:OfflineMessageModule} {URL of offline messaging service} {} 552 ;# {OfflineMessageURL} {OfflineMessageModule:OfflineMessageModule Offline Message Module V2:Offline Message Module V2} {URL of offline messaging service} {}
536 ;; URL of web service for offline message storage 553 ;; URL of web service for offline message storage. Leave it commented if your service is local to the sim.
537 ; OfflineMessageURL = http://yourserver/Offline.php 554 ; OfflineMessageURL = http://yourserver/Offline.php or http://yourrobustserver:8003
555
556 ;# {StorageProvider} {Offline Message Module V2:Offline Message Module V2} {DLL that provides the storage interface} {OpenSim.Data.MySQL.dll}
557 ;; For standalones, this is the storage dll.
558 ; StorageProvider = OpenSim.Data.MySQL.dll
538 559
539 ;# {MuteListModule} {OfflineMessageModule:OfflineMessageModule} {} {} MuteListModule 560 ;# {MuteListModule} {OfflineMessageModule:OfflineMessageModule} {} {} MuteListModule
540 ;; Mute list handler (not yet implemented). MUST BE SET to allow offline 561 ;; Mute list handler (not yet implemented). MUST BE SET to allow offline
@@ -921,33 +942,48 @@
921 ;; Enables the groups module 942 ;; Enables the groups module
922 ; Enabled = false 943 ; Enabled = false
923 944
924 ;# {Module} {Enabled:true} {Groups module to use? (Use GroupsModule to use Flotsam/Simian)} {} Default 945 ;# {Module} {Enabled:true} {Groups module to use? (Use GroupsModule to use Flotsam/Simian)} {Default "Groups Module V2"} Default
925 ;; This is the current groups stub in Region.CoreModules.Avatar.Groups. 946 ;; The default module can use a PHP XmlRpc server from the Flotsam project at
926 ;; All the other settings below only really apply to the Flotsam/SimianGrid
927 ;; GroupsModule.
928 ;; This module can use a PHP XmlRpc server from the Flotsam project at
929 ;; http://code.google.com/p/flotsam/ 947 ;; http://code.google.com/p/flotsam/
930 ;; or from the SimianGrid project at http://code.google.com/p/openmetaverse 948 ;; or from the SimianGrid project at http://code.google.com/p/openmetaverse
931 ; Module = Default 949 ; Module = Default
950 ;; or... use Groups Module V2, which works for standalones and robust grids
951 ; Module = "Groups Module V2"
932 952
933 ;# {MessagingEnabled} {Module:GroupsModule} {Is groups messaging enabled?} {true false} true 953 ;# {StorageProvider} {Module:Groups Module V2} {The DLL that provides the storage for V2} {OpenSim.Data.MySQL.dll}
934 ; MessagingEnabled = true 954 ; StorageProvider = OpenSim.Data.MySQL.dll
935 955
936 ;# {MessagingModule} {MessagingEnabled:true} {Module to use for groups messaging} {GroupsMessagingModule} GroupsMessagingModule 956 ;# {ServicesConnectorModule} {Module:GroupsModule Module:Groups Module V2} {Service connector to use for groups} {XmlRpcGroupsServicesConnector SimianGroupsServicesConnector "Groups Local Service Connector" "Groups Remote Service Connector" "Groups HG Service Connector"} XmlRpcGroupsServicesConnector
937 ; MessagingModule = GroupsMessagingModule
938
939 ;# {ServicesConnectorModule} {Module:GroupsModule} {Service connector to use for groups} {XmlRpcGroupsServicesConnector SimianGroupsServicesConnector} XmlRpcGroupsServicesConnector
940 ;; Service connectors to the Groups Service as used in the GroupsModule. Select one depending on 957 ;; Service connectors to the Groups Service as used in the GroupsModule. Select one depending on
941 ;; whether you're using a Flotsam XmlRpc backend or a SimianGrid backend 958 ;; whether you're using a Flotsam XmlRpc backend or a SimianGrid backend or several flavours of V2, Hypergrided or not, standalone or grided.
942 ; ServicesConnectorModule = XmlRpcGroupsServicesConnector 959 ; ServicesConnectorModule = XmlRpcGroupsServicesConnector
943 960
944 ;# {GroupsServerURI} {Module:GroupsModule} {Groups Server URI} {} 961 ;# {LocalService} {ServicesConnectorModule:Groups HG Service Connector} {Is the group service in this process or elsewhere?} {local remote} local
945 ;; URI for the groups services 962 ;; Used for V2 in HG only. If standalone, set this to local; if grided sim, set this to remote
963 ; LocalService = local
964
965 ;# {GroupsServerURI} {Module:GroupsModule (ServicesConnectorModule:Groups Remote Service Connector or (ServicesConnectorModule:Groups HG Service Connector and LocalService:remote))} {Groups Server URI} {}
966 ;; URI for the groups services of this grid
946 ;; e.g. http://yourxmlrpcserver.com/xmlrpc.php for Flotsam XmlRpc 967 ;; e.g. http://yourxmlrpcserver.com/xmlrpc.php for Flotsam XmlRpc
947 ;; or http://mygridserver.com:82/Grid/ for SimianGrid 968 ;; or http://mygridserver.com:82/Grid/ for SimianGrid
969 ;; or http:://mygridserver.com:8003 for robust, V2
948 ; GroupsServerURI = "" 970 ; GroupsServerURI = ""
949 971
950 ;# {NoticesEnabled} {Module:GroupsModule} {Enable group notices?} {true false} true 972 ;# {HomeURI} {ServicesConnectorModule:Groups HG Service Connector} {What's the home address of this world?} {}
973 ;; Used for V2 in HG only. For example
974 ;; http://mygridserver.com:9000 or http://mygridserver.com:8002
975 ;; If you have this set under [Startup], no need to set it here, leave it commented
976 ; HomeURI = ""
977
978 ;# {MessagingEnabled} {Module:GroupsModule Module:Groups Module V2} {Is groups messaging enabled?} {true false} true
979 ; MessagingEnabled = true
980
981 ;# {MessagingModule} {MessagingEnabled:true} {Module to use for groups messaging} {GroupsMessagingModule "Groups Messaging Module V2"} GroupsMessagingModule
982 ; MessagingModule = GroupsMessagingModule
983 ;; or use V2 for Groups V2
984 ; MessagingModule = "Groups Messaging Module V2"
985
986 ;# {NoticesEnabled} {Module:GroupsModule Module:Groups Module V2} {Enable group notices?} {true false} true
951 ;; Enable Group Notices 987 ;; Enable Group Notices
952 ; NoticesEnabled = true 988 ; NoticesEnabled = true
953 989