diff options
author | onefang | 2019-05-19 23:10:15 +1000 |
---|---|---|
committer | onefang | 2019-05-19 23:10:15 +1000 |
commit | 64dfe62fab804be64cc29cc0c821e7abac1d946d (patch) | |
tree | 3874e927329d88a62e27dde2cc210c968b86c2e2 /config/config-include/storage | |
parent | New TODO. (diff) | |
download | opensim-SC-64dfe62fab804be64cc29cc0c821e7abac1d946d.zip opensim-SC-64dfe62fab804be64cc29cc0c821e7abac1d946d.tar.gz opensim-SC-64dfe62fab804be64cc29cc0c821e7abac1d946d.tar.bz2 opensim-SC-64dfe62fab804be64cc29cc0c821e7abac1d946d.tar.xz |
Make examples directory, and shuffle all the out of tree stuff into it.
Diffstat (limited to 'config/config-include/storage')
-rw-r--r-- | config/config-include/storage/SQLiteStandalone.ini | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/config/config-include/storage/SQLiteStandalone.ini b/config/config-include/storage/SQLiteStandalone.ini deleted file mode 100644 index 14051cc..0000000 --- a/config/config-include/storage/SQLiteStandalone.ini +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | ; These are the initialization settings for running OpenSim Standalone with an SQLite database | ||
2 | |||
3 | [DatabaseService] | ||
4 | StorageProvider = "OpenSim.Data.SQLite.dll" | ||
5 | ConnectionString = "URI=file:../db/OpenSim.db,version=3,UseUTF16Encoding=True" | ||
6 | |||
7 | [AssetService] | ||
8 | ConnectionString = "URI=file:../db/Asset.db,version=3" | ||
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:../db/Asset.db,version=3" | ||
19 | |||
20 | [InventoryService] | ||
21 | ;ConnectionString = "URI=file:../db/inventory.db,version=3" | ||
22 | ; if you have a legacy inventory store use the connection string below | ||
23 | ConnectionString = "URI=file:../db/inventory.db,version=3,UseUTF16Encoding=True" | ||
24 | |||
25 | [AvatarService] | ||
26 | ConnectionString = "URI=file:../db/avatars.db,version=3" | ||
27 | |||
28 | [AuthenticationService] | ||
29 | ConnectionString = "URI=file:../db/auth.db,version=3" | ||
30 | |||
31 | [UserAccountService] | ||
32 | ConnectionString = "URI=file:../db/userprofiles.db,version=3" | ||
33 | |||
34 | [GridUserService] | ||
35 | ConnectionString = "URI=file:../db/griduser.db,version=3" | ||
36 | |||
37 | [FriendsService] | ||
38 | ConnectionString = "URI=file:../db/friends.db,version=3" | ||
39 | |||