aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/config-include
diff options
context:
space:
mode:
Diffstat (limited to 'bin/config-include')
-rw-r--r--bin/config-include/FlotsamCache.ini.example7
-rw-r--r--bin/config-include/StandaloneHypergrid.ini7
-rw-r--r--bin/config-include/storage/SQLiteStandalone.ini10
3 files changed, 15 insertions, 9 deletions
diff --git a/bin/config-include/FlotsamCache.ini.example b/bin/config-include/FlotsamCache.ini.example
index b9c6d84..ad74fc1 100644
--- a/bin/config-include/FlotsamCache.ini.example
+++ b/bin/config-include/FlotsamCache.ini.example
@@ -54,10 +54,3 @@
54 54
55 ; Warning level for cache directory size 55 ; Warning level for cache directory size
56 ;CacheWarnAt = 30000 56 ;CacheWarnAt = 30000
57
58 ; Perform a deep scan of all assets within all regions, looking for all assets
59 ; present or referenced. Mark all assets found that are already present in the
60 ; cache, and request all assets that are found that are not already cached (this
61 ; will cause those assets to be cached)
62 ;
63 DeepScanBeforePurge = true
diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini
index 75c4788..b0ae351 100644
--- a/bin/config-include/StandaloneHypergrid.ini
+++ b/bin/config-include/StandaloneHypergrid.ini
@@ -36,8 +36,6 @@
36 SimulationServiceInConnector = true 36 SimulationServiceInConnector = true
37 MapImageServiceInConnector = true 37 MapImageServiceInConnector = true
38 38
39[Profile]
40 Module = "BasicProfileModule"
41 39
42[Messaging] 40[Messaging]
43 MessageTransferModule = HGMessageTransferModule 41 MessageTransferModule = HGMessageTransferModule
@@ -97,6 +95,10 @@
97 GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService" 95 GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
98 GridService = "OpenSim.Services.GridService.dll:GridService" 96 GridService = "OpenSim.Services.GridService.dll:GridService"
99 InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService" 97 InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
98 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
99
100 ;; This switch creates the minimum set of body parts and avatar entries for a viewer 2 to show a default "Ruth" avatar rather than a cloud.
101 CreateDefaultAvatarEntries = true
100 102
101[GridUserService] 103[GridUserService]
102 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService" 104 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
@@ -151,6 +153,7 @@
151 ; For the InventoryServiceInConnector 153 ; For the InventoryServiceInConnector
152 LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInventoryService" 154 LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInventoryService"
153 UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService" 155 UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
156 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
154 157
155;; The interface that local users get when they are in other grids 158;; The interface that local users get when they are in other grids
156;; This restricts/filters the asset operations from the outside 159;; This restricts/filters the asset operations from the outside
diff --git a/bin/config-include/storage/SQLiteStandalone.ini b/bin/config-include/storage/SQLiteStandalone.ini
index c1de71a..67d98ff 100644
--- a/bin/config-include/storage/SQLiteStandalone.ini
+++ b/bin/config-include/storage/SQLiteStandalone.ini
@@ -7,6 +7,16 @@
7[AssetService] 7[AssetService]
8 ConnectionString = "URI=file:Asset.db,version=3" 8 ConnectionString = "URI=file:Asset.db,version=3"
9 9
10; The HGAssetService section controls the connection given to the AssetService in a Hypergrid configuration.
11; This has to be separate from [AssetService] because the Hypergrid facing connector uses [HGAssetService] for its config data instead.
12; However, the internal asset service will still use the [AssetService] section.
13; Therefore, you will almost certainly want the ConnectionString in [HGAssetService] to be the same as in [AssetService]
14; so that they both access the same database.
15; This issue does not apply to normal MySQL/MSSQL configurations, since by default they use the settings in [DatabaseService] and
16; do not have separate connection strings for different services.
17[HGAssetService]
18 ConnectionString = "URI=file:Asset.db,version=3"
19
10[InventoryService] 20[InventoryService]
11 ;ConnectionString = "URI=file:inventory.db,version=3" 21 ;ConnectionString = "URI=file:inventory.db,version=3"
12 ; if you have a legacy inventory store use the connection string below 22 ; if you have a legacy inventory store use the connection string below