aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/config-include
diff options
context:
space:
mode:
Diffstat (limited to 'bin/config-include')
-rw-r--r--bin/config-include/Grid.ini31
-rw-r--r--bin/config-include/GridCommon.ini.example38
-rw-r--r--bin/config-include/GridHypergrid.ini31
-rw-r--r--bin/config-include/SimianGrid.ini67
-rw-r--r--bin/config-include/Standalone.ini74
-rw-r--r--bin/config-include/StandaloneCommon.ini.example45
-rw-r--r--bin/config-include/StandaloneHypergrid.ini107
-rw-r--r--bin/config-include/storage/SQLiteLegacyStandalone.ini16
-rw-r--r--bin/config-include/storage/SQLiteStandalone.ini22
9 files changed, 372 insertions, 59 deletions
diff --git a/bin/config-include/Grid.ini b/bin/config-include/Grid.ini
index 5b19130..4767cbc 100644
--- a/bin/config-include/Grid.ini
+++ b/bin/config-include/Grid.ini
@@ -9,16 +9,31 @@
9 9
10[Modules] 10[Modules]
11 AssetServices = "RemoteAssetServicesConnector" 11 AssetServices = "RemoteAssetServicesConnector"
12 InventoryServices = "RemoteInventoryServicesConnector" 12 InventoryServices = "RemoteXInventoryServicesConnector"
13 AuthorizationServices = "RemoteAuthorizationServicesConnector"
14 NeighbourServices = "RemoteNeighbourServicesConnector"
15 GridServices = "RemoteGridServicesConnector" 13 GridServices = "RemoteGridServicesConnector"
16 NeighbourServiceInConnector = true 14 AvatarServices = "RemoteAvatarServicesConnector"
15 NeighbourServices = "RemoteNeighbourServicesConnector"
16 AuthenticationServices = "RemoteAuthenticationServicesConnector"
17 PresenceServices = "RemotePresenceServicesConnector"
18 UserAccountServices = "RemoteUserAccountServicesConnector"
19 SimulationServices = "RemoteSimulationConnectorModule"
20 EntityTransferModule = "BasicEntityTransferModule"
21 InventoryAccessModule = "BasicInventoryAccessModule"
17 LandServiceInConnector = true 22 LandServiceInConnector = true
18 LLProxyLoginModule = true 23 NeighbourServiceInConnector = true
24 SimulationServiceInConnector = true
25 LibraryModule = true
26
19 27
20[GridService] 28[GridService]
21 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" 29 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
22 ; for the LocalGridServicesConnector which is used by the Remote one 30 ; for the LocalGridServicesConnector which is used by the Remote one
23 StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" 31 StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"
24 \ No newline at end of file 32
33[LibraryService]
34 LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService"
35 LibraryName = "OpenSim Library"
36 DefaultLibrary = "./inventory/Libraries.xml"
37
38[Friends]
39 Connector = "OpenSim.Services.Connectors.dll:FriendsServicesConnector"
diff --git a/bin/config-include/GridCommon.ini.example b/bin/config-include/GridCommon.ini.example
index 6da0f1e..6e27694 100644
--- a/bin/config-include/GridCommon.ini.example
+++ b/bin/config-include/GridCommon.ini.example
@@ -20,6 +20,44 @@
20 ; change this to your grid-wide grid server 20 ; change this to your grid-wide grid server
21 ; 21 ;
22 GridServerURI = "http://mygridserver.com:8003" 22 GridServerURI = "http://mygridserver.com:8003"
23 ;AllowHypergridMapSearch = true
24
25[AvatarService]
26 ;
27 ; change this to your grid-wide grid server
28 ;
29 AvatarServerURI = "http://mygridserver.com:8003"
30
31[PresenceService]
32 ;
33 ; change this to your grid-wide presence server
34 ;
35 PresenceServerURI = "http://mygridserver.com:8003"
36
37[UserAccountService]
38 ;
39 ; change this to your grid-wide user accounts server
40 ;
41 UserAccountServerURI = "http://mygridserver.com:8003"
42
43[AuthenticationService]
44 ;
45 ; change this to your grid-wide authentication server
46 ;
47 AuthenticationServerURI = "http://mygridserver.com:8003"
48
49[FriendsService]
50 ;
51 ; change this to your grid-wide friends server
52 ;
53 FriendsServerURI = "http://mygridserver.com:8003"
54
55[Groups]
56 ;
57 ; change this to your grid-wide groups server
58 ;
59 GroupsServerURI = "http://mygridserver.com:82/Grid/"
60
23 61
24[Modules] 62[Modules]
25 ;; Choose 0 or 1 cache modules, and the corresponding config file, if it exists. 63 ;; Choose 0 or 1 cache modules, and the corresponding config file, if it exists.
diff --git a/bin/config-include/GridHypergrid.ini b/bin/config-include/GridHypergrid.ini
index a5fe6e9..051a87e 100644
--- a/bin/config-include/GridHypergrid.ini
+++ b/bin/config-include/GridHypergrid.ini
@@ -7,31 +7,38 @@
7[Includes] 7[Includes]
8 Include-Common = "config-include/GridCommon.ini" 8 Include-Common = "config-include/GridCommon.ini"
9 9
10[Startup]
11 hypergrid = true
12
13[Modules] 10[Modules]
14 AssetServices = "HGAssetBroker" 11 AssetServices = "HGAssetBroker"
15 InventoryServices = "HGInventoryBroker" 12 InventoryServices = "HGInventoryBroker"
13 GridServices = "RemoteGridServicesConnector"
14 AvatarServices = "RemoteAvatarServicesConnector"
16 NeighbourServices = "RemoteNeighbourServicesConnector" 15 NeighbourServices = "RemoteNeighbourServicesConnector"
17 GridServices = "HGGridServicesConnector" 16 AuthenticationServices = "RemoteAuthenticationServicesConnector"
18 NeighbourServiceInConnector = true 17 AuthorizationServices = "LocalAuthorizationServicesConnector"
18 PresenceServices = "RemotePresenceServicesConnector"
19 UserAccountServices = "RemoteUserAccountServicesConnector"
20 SimulationServices = "RemoteSimulationConnectorModule"
21 EntityTransferModule = "HGEntityTransferModule"
22 InventoryAccessModule = "HGInventoryAccessModule"
19 LandServiceInConnector = true 23 LandServiceInConnector = true
20 HypergridServiceInConnector = true 24 NeighbourServiceInConnector = true
21 LLProxyLoginModule = true 25 SimulationServiceInConnector = true
26 LibraryModule = true
22 27
23[AssetService] 28[AssetService]
24 LocalGridAssetService = "OpenSim.Services.Connectors.dll:AssetServicesConnector" 29 LocalGridAssetService = "OpenSim.Services.Connectors.dll:AssetServicesConnector"
25 HypergridAssetService = "OpenSim.Services.Connectors.dll:HGAssetServiceConnector" 30 HypergridAssetService = "OpenSim.Services.Connectors.dll:HGAssetServiceConnector"
26 31
27[InventoryService] 32[InventoryService]
28 LocalGridInventoryService = "OpenSim.Region.CoreModules.dll:RemoteInventoryServicesConnector" 33 LocalGridInventoryService = "OpenSim.Region.CoreModules.dll:RemoteXInventoryServicesConnector"
29 HypergridInventoryService = "OpenSim.Services.Connectors.dll:HGInventoryServiceConnector"
30 34
31[GridService] 35[GridService]
32 ; for the HGGridServicesConnector to instantiate
33 GridServiceConnectorModule = "OpenSim.Region.CoreModules.dll:RemoteGridServicesConnector"
34 ; RemoteGridServicesConnector instantiates a LocalGridServicesConnector, 36 ; RemoteGridServicesConnector instantiates a LocalGridServicesConnector,
35 ; which in turn uses this 37 ; which in turn uses this
36 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" 38 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
37 StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" 39 StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"
40
41 AllowHypergridMapSearch = true
42
43[Friends]
44 Connector = "OpenSim.Services.Connectors.dll:FriendsServicesConnector"
diff --git a/bin/config-include/SimianGrid.ini b/bin/config-include/SimianGrid.ini
new file mode 100644
index 0000000..41deb92
--- /dev/null
+++ b/bin/config-include/SimianGrid.ini
@@ -0,0 +1,67 @@
1;;
2;; Please don't change this file.
3;; All optional settings are in GridCommon.ini.example,
4;; which you can copy and change.
5;;
6
7;;
8;; In GridCommon.ini, these are the URLs you would use if SimianGrid is
9;; installed at http://www.mygrid.com/Grid/
10;;
11; AssetServerURI = "http://www.mygrid.com/Grid/?id="
12; InventoryServerURI = "http://www.mygrid.com/Grid/"
13; AvatarServerURI = "http://www.mygrid.com/Grid/"
14; PresenceServerURI = "http://www.mygrid.com/Grid/"
15; UserAccountServerURI = "http://www.mygrid.com/Grid/"
16; AuthenticationServerURI = "http://www.mygrid.com/Grid/"
17; FriendsServerURI = "http://www.mygrid.com/Grid/"
18; GroupsServerURI = "http://www.mygrid.com/Grid/"
19
20[Includes]
21 Include-Common = "config-include/GridCommon.ini"
22
23[Modules]
24 GridServices = "OpenSim.Services.Connectors.dll:SimianGridServiceConnector"
25 PresenceServices = "OpenSim.Services.Connectors.dll:SimianPresenceServiceConnector"
26 UserAccountServices = "OpenSim.Services.Connectors.dll:SimianUserAccountServiceConnector"
27 AuthenticationServices = "OpenSim.Services.Connectors.dll:SimianAuthenticationServiceConnector"
28 AssetServices = "OpenSim.Services.Connectors.dll:SimianAssetServiceConnector"
29 InventoryServices = "OpenSim.Services.Connectors.dll:SimianInventoryServiceConnector"
30 AvatarServices = "OpenSim.Services.Connectors.dll:SimianAvatarServiceConnector"
31
32 NeighbourServices = "RemoteNeighbourServicesConnector"
33 SimulationServices = "RemoteSimulationConnectorModule"
34 EntityTransferModule = "BasicEntityTransferModule"
35 InventoryAccessModule = "BasicInventoryAccessModule"
36
37 LandServiceInConnector = true
38 NeighbourServiceInConnector = true
39 SimulationServiceInConnector = true
40 LibraryModule = false
41
42 AssetCaching = "FlotsamAssetCache"
43
44[Friends]
45 Connector = "OpenSim.Services.Connectors.dll:SimianFriendsServiceConnector"
46
47[GridService]
48 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
49 StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"
50
51[LibraryService]
52 LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService"
53 LibraryName = "OpenSim Library"
54 DefaultLibrary = "./inventory/Libraries.xml"
55
56[AssetService]
57 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
58 AssetLoaderArgs = "assets/AssetSets.xml"
59
60[Groups]
61 Enabled = true
62 Module = GroupsModule
63 DebugEnabled = false
64 NoticesEnabled = true
65 MessagingModule = GroupsMessagingModule
66 MessagingEnabled = true
67 ServicesConnectorModule = SimianGroupsServicesConnector
diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini
index 35ee01e..027b4ea 100644
--- a/bin/config-include/Standalone.ini
+++ b/bin/config-include/Standalone.ini
@@ -4,26 +4,82 @@
4;; which you can copy and change. 4;; which you can copy and change.
5;; 5;;
6 6
7[Includes]
8 Include-Common = "config-include/StandaloneCommon.ini"
9
10[Modules] 7[Modules]
11 AssetServices = "LocalAssetServicesConnector" 8 AssetServices = "LocalAssetServicesConnector"
12 InventoryServices = "LocalInventoryServicesConnector" 9 InventoryServices = "LocalInventoryServicesConnector"
13 NeighbourServices = "LocalNeighbourServicesConnector" 10 NeighbourServices = "LocalNeighbourServicesConnector"
14 AuthorizationServices = "LocalAuthorizationServicesConnector" 11 AuthenticationServices = "LocalAuthenticationServicesConnector"
15 GridServices = "LocalGridServicesConnector" 12 GridServices = "LocalGridServicesConnector"
13 PresenceServices = "LocalPresenceServicesConnector"
14 UserAccountServices = "LocalUserAccountServicesConnector"
15 GridUserServices = "LocalGridUserServicesConnector"
16 SimulationServices = "LocalSimulationConnectorModule"
17 AvatarServices = "LocalAvatarServicesConnector"
18 EntityTransferModule = "BasicEntityTransferModule"
19 InventoryAccessModule = "BasicInventoryAccessModule"
16 LibraryModule = true 20 LibraryModule = true
21 LLLoginServiceInConnector = true
17 22
18[AssetService] 23[AssetService]
19 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" 24 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
20 25
21[InventoryService] 26[InventoryService]
22 LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" 27 LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
28
29[LibraryService]
30 LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService"
31 LibraryName = "OpenSim Library"
32 DefaultLibrary = "./inventory/Libraries.xml"
33
34[AvatarService]
35 LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
23 36
24[AuthorizationService] 37[AuthorizationService]
25 LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" 38 LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService"
26 39
40[AuthenticationService]
41 LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
42
27[GridService] 43[GridService]
28 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" 44 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
29 Realm = "regions" 45 Realm = "regions"
46 StorageProvider = "OpenSim.Data.Null.dll"
47
48[PresenceService]
49 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
50 StorageProvider = "OpenSim.Data.Null.dll"
51
52[UserAccountService]
53 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
54
55 ;; These are for creating new accounts
56 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
57 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
58 GridService = "OpenSim.Services.GridService.dll:GridService"
59 InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
60
61[GridUserService]
62 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
63
64[FriendsService]
65 LocalServiceModule = "OpenSim.Services.FriendsService.dll"
66
67[Friends]
68 Connector = "OpenSim.Services.FriendsService.dll"
69
70[LoginService]
71 LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
72 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
73 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
74 InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
75 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
76 GridService = "OpenSim.Services.GridService.dll:GridService"
77 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
78 FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
79
80 WelcomeMessage = "Welcome, Avatar!"
81
82
83;; This should always be the very last thing on this file
84[Includes]
85 Include-Common = "config-include/StandaloneCommon.ini"
diff --git a/bin/config-include/StandaloneCommon.ini.example b/bin/config-include/StandaloneCommon.ini.example
index 1679f93..572c153 100644
--- a/bin/config-include/StandaloneCommon.ini.example
+++ b/bin/config-include/StandaloneCommon.ini.example
@@ -1,19 +1,28 @@
1; This is the main configuration file for standalone OpenSim instances
2
1[DatabaseService] 3[DatabaseService]
2 ; 4 ;
3 ;### Choose the DB 5 ; ### Choose the DB
4 ; 6 ;
5 ;--- For SQLite 7
6 StorageProvider = "OpenSim.Data.SQLite.dll" 8 ; SQLite
7 ;--- For MySql 9 Include-Storage = "config-include/storage/SQLiteStandalone.ini";
10
11 ; Unfortunately the current SQLite database plugin is not compatible with Mac OSX. You can still use the older
12 ; legacy sqlite library if you are using Mono 2.4. Please see the notes in OpenSim.ini (search for sqlite)
13 ; for more details
14 ;Include-Storage = "config-include/storage/SQLiteLegacyStandalone.ini";
15
16 ; MySql
17 ; Uncomment these lines if you want to use mysql storage
18 ; Change the connection string to your db details
8 ;StorageProvider = "OpenSim.Data.MySQL.dll" 19 ;StorageProvider = "OpenSim.Data.MySQL.dll"
9 ;ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=***;" 20 ;ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=***;"
10 21
11[AssetService] 22[AssetService]
12
13 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" 23 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
14 AssetLoaderArgs = "assets/AssetSets.xml" 24 AssetLoaderArgs = "assets/AssetSets.xml"
15 25
16
17[Modules] 26[Modules]
18 ;; Choose 0 or 1 cache modules, and the corresponding config file, if it exists. 27 ;; Choose 0 or 1 cache modules, and the corresponding config file, if it exists.
19 ;; Copy the config .example file into your own .ini file and change configs there 28 ;; Copy the config .example file into your own .ini file and change configs there
@@ -35,11 +44,27 @@
35 44
36[GridService] 45[GridService]
37 ;; For in-memory region storage (default) 46 ;; For in-memory region storage (default)
38 StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" 47 StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"
39 ;;--- For MySql region storage (alternative) 48 ;;--- For MySql region storage (alternative)
40 ;StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData" 49 ;StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData"
41 ;ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=***;" 50
51 ;; Next, we can specify properties of regions, including default and fallback regions
52 ;; The syntax is: Region_<RegioName> = "<flags>"
53 ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut
54 ;; For example:
55 Region_Welcome_Area = "DefaultRegion, FallbackRegion"
42 56
43[LibraryModule] 57[LibraryModule]
44 ; Set this if you want to change the name of the OpenSim Library 58 ; Set this if you want to change the name of the OpenSim Library
45 ;LibraryName = "My World's Library" \ No newline at end of file 59 ;LibraryName = "My World's Library"
60
61[LoginService]
62 WelcomeMessage = "Welcome, Avatar!"
63
64 HomeURI = "http://127.0.0.1:9000"
65 GatekeeperURI = "http://127.0.0.1:9000"
66 InventoryServerURI = "http://127.0.0.1:9000"
67 AssetServerURI = "http://127.0.0.1:9000"
68
69[GatekeeperService]
70 ExternalName = "http://127.0.0.1:9000"
diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini
index 909286c..35e6f20 100644
--- a/bin/config-include/StandaloneHypergrid.ini
+++ b/bin/config-include/StandaloneHypergrid.ini
@@ -3,28 +3,29 @@
3;; All optional settings are in StandaloneCommon.ini.example, 3;; All optional settings are in StandaloneCommon.ini.example,
4;; which you can copy and change. 4;; which you can copy and change.
5;; 5;;
6
7[Includes]
8 Include-Common = "config-include/StandaloneCommon.ini"
9
10[Startup]
11 hypergrid = true
12 6
13[Modules] 7[Modules]
14 AssetServices = "HGAssetBroker" 8 AssetServices = "HGAssetBroker"
15 InventoryServices = "HGInventoryBroker" 9 InventoryServices = "HGInventoryBroker"
16 NeighbourServices = "RemoteNeighbourServicesConnector" 10 NeighbourServices = "LocalNeighbourServicesConnector"
17 AuthorizationServices = "LocalAuthorizationServicesConnector" 11 AuthenticationServices = "LocalAuthenticationServicesConnector"
18 GridServices = "HGGridServicesConnector" 12 GridServices = "LocalGridServicesConnector"
13 PresenceServices = "LocalPresenceServicesConnector"
14 UserAccountServices = "LocalUserAccountServicesConnector"
15 SimulationServices = "RemoteSimulationConnectorModule"
16 AvatarServices = "LocalAvatarServicesConnector"
17 EntityTransferModule = "HGEntityTransferModule"
18 InventoryAccessModule = "HGInventoryAccessModule"
19 InventoryServiceInConnector = true 19 InventoryServiceInConnector = true
20 AssetServiceInConnector = true 20 AssetServiceInConnector = true
21 HGAuthServiceInConnector = true
22 HypergridServiceInConnector = true 21 HypergridServiceInConnector = true
23 NeighbourServiceInConnector = true 22 NeighbourServiceInConnector = true
24 LibraryModule = true 23 LibraryModule = true
24 LLLoginServiceInConnector = true
25 AuthenticationServiceInConnector = true
26 SimulationServiceInConnector = true
25 27
26[AssetService] 28[AssetService]
27 ; For the AssetServiceInConnector
28 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" 29 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
29 30
30 ; For HGAssetBroker 31 ; For HGAssetBroker
@@ -32,23 +33,89 @@
32 HypergridAssetService = "OpenSim.Services.Connectors.dll:HGAssetServiceConnector" 33 HypergridAssetService = "OpenSim.Services.Connectors.dll:HGAssetServiceConnector"
33 34
34[InventoryService] 35[InventoryService]
35 ; For the InventoryServiceInConnector 36 LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
36 LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService"
37 37
38 ; For HGInventoryBroker 38 ; For HGInventoryBroker
39 LocalGridInventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" 39 LocalGridInventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
40 HypergridInventoryService = "OpenSim.Services.Connectors.dll:HGInventoryServiceConnector" 40
41[AvatarService]
42 LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
43 ConnectionString = "URI=file:avatars.db,version=3"
44
45[LibraryService]
46 LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService"
47 LibraryName = "OpenSim Library"
48 DefaultLibrary = "./inventory/Libraries.xml"
41 49
42[AuthorizationService] 50[AuthorizationService]
43 LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" 51 LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService"
44 52
45[AuthenticationService] 53[AuthenticationService]
46 ; For the HGAuthServiceInConnector 54 LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
47 LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:HGAuthenticationService" 55 ConnectionString = "URI=file:auth.db,version=3"
48 56
49[GridService] 57[GridService]
50 ; for the HGGridServicesConnector to instantiate
51 GridServiceConnectorModule = "OpenSim.Region.CoreModules.dll:LocalGridServicesConnector"
52 ; LocalGridServicesConnector needs this 58 ; LocalGridServicesConnector needs this
53 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" 59 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
54 Realm = "regions" 60 Realm = "regions"
61 StorageProvider = "OpenSim.Data.Null.dll"
62
63 AllowHypergridMapSearch = true
64
65[PresenceService]
66 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
67 StorageProvider = "OpenSim.Data.Null.dll"
68
69[UserAccountService]
70 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
71 ConnectionString = "URI=file:userprofiles.db,version=3"
72 ;; These are for creating new accounts by the service
73 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
74 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
75 GridService = "OpenSim.Services.GridService.dll:GridService"
76 InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
77
78[FriendsService]
79 LocalServiceModule = "OpenSim.Services.FriendsService.dll"
80 ConnectionString = "URI=file:friends.db,version=3"
81
82[Friends]
83 Connector = "OpenSim.Services.FriendsService.dll"
84
85[LoginService]
86 LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
87 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
88 UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
89 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
90 InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
91 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
92 GridService = "OpenSim.Services.GridService.dll:GridService"
93 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
94 FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
95
96[GatekeeperService]
97 LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService"
98 ;; for the service
99 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
100 UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
101 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
102 GridService = "OpenSim.Services.GridService.dll:GridService"
103 AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector"
104 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
105
106[UserAgentService]
107 LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService"
108 ;; for the service
109 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
110 GridService = "OpenSim.Services.GridService.dll:GridService"
111
112;; The interface that local users get when they are in other grids
113;; This greatly restricts the inventory operations while in other grids
114[HGInventoryService]
115 ; For the InventoryServiceInConnector
116 LocalServiceModule = "OpenSim.Services.InventoryService.dll:HGInventoryService"
117
118
119;; This should always be the very last thing on this file
120[Includes]
121 Include-Common = "config-include/StandaloneCommon.ini"
diff --git a/bin/config-include/storage/SQLiteLegacyStandalone.ini b/bin/config-include/storage/SQLiteLegacyStandalone.ini
new file mode 100644
index 0000000..1d4dd29
--- /dev/null
+++ b/bin/config-include/storage/SQLiteLegacyStandalone.ini
@@ -0,0 +1,16 @@
1; These are the initialization settings for running OpenSim Standalone with an SQLite database
2
3[DatabaseService]
4 StorageProvider = "OpenSim.Data.SQLiteLegacy.dll"
5
6[AvatarService]
7 ConnectionString = "URI=file:avatars.db,version=3"
8
9[AuthenticationService]
10 ConnectionString = "URI=file:auth.db,version=3"
11
12[UserAccountService]
13 ConnectionString = "URI=file:userprofiles.db,version=3"
14
15[FriendsService]
16 ConnectionString = "URI=file:friends.db,version=3"
diff --git a/bin/config-include/storage/SQLiteStandalone.ini b/bin/config-include/storage/SQLiteStandalone.ini
new file mode 100644
index 0000000..ed88a8a
--- /dev/null
+++ b/bin/config-include/storage/SQLiteStandalone.ini
@@ -0,0 +1,22 @@
1; These are the initialization settings for running OpenSim Standalone with an SQLite database
2
3[DatabaseService]
4 StorageProvider = "OpenSim.Data.SQLite.dll"
5
6[InventoryService]
7 ;ConnectionString = "URI=file:inventory.db,version=3"
8 ; if you have a legacy inventory store use the connection string below
9 ConnectionString = "URI=file:inventory.db,version=3,UseUTF16Encoding=True"
10
11[AvatarService]
12 ConnectionString = "URI=file:avatars.db,version=3"
13
14[AuthenticationService]
15 ConnectionString = "URI=file:auth.db,version=3"
16
17[UserAccountService]
18 ConnectionString = "URI=file:userprofiles.db,version=3"
19
20[FriendsService]
21 ConnectionString = "URI=file:friends.db,version=3"
22