diff options
Diffstat (limited to '')
-rw-r--r-- | bin/config-include/StandaloneCommon.ini.example | 45 |
1 files changed, 35 insertions, 10 deletions
diff --git a/bin/config-include/StandaloneCommon.ini.example b/bin/config-include/StandaloneCommon.ini.example index 1679f93..74bdbe2 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 | ; Uncomment this line if you want to use sqlite storage with Mono 2.4 |
10 | Include-Storage = "config-include/storage/SQLiteStandalone.ini"; | ||
11 | |||
12 | ; If you want to use sqlite with Mono 2.6 and above, uncomment this line instead. | ||
13 | ; Don't forget to do the same thing for the storage_plugin setting in OpenSim.ini | ||
14 | ; Include-Storage = "config-include/storage/SQLiteNGStandalone.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" | ||