diff options
author | lbsa71 | 2007-11-15 15:32:28 +0000 |
---|---|---|
committer | lbsa71 | 2007-11-15 15:32:28 +0000 |
commit | 57ff76850d1d50d31efe7c20998c57a162ac819d (patch) | |
tree | f97fb9cbd320fe1a509e921003cf9713330f3925 /bin/OpenSim.ini.example | |
parent | * Implemented the little friendly pop tooltip messages that appear when you h... (diff) | |
download | opensim-SC_OLD-57ff76850d1d50d31efe7c20998c57a162ac819d.zip opensim-SC_OLD-57ff76850d1d50d31efe7c20998c57a162ac819d.tar.gz opensim-SC_OLD-57ff76850d1d50d31efe7c20998c57a162ac819d.tar.bz2 opensim-SC_OLD-57ff76850d1d50d31efe7c20998c57a162ac819d.tar.xz |
* Added MySQLDataStore (adapted from MonoSqlite
* Made startup a little bit more forgiving on dll load
* Minor renamings and musings
Diffstat (limited to '')
-rw-r--r-- | bin/OpenSim.ini.example | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 43af529..1e64f75 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example | |||
@@ -15,11 +15,18 @@ physics = basicphysics | |||
15 | ;physics = OpenDynamicsEngine | 15 | ;physics = OpenDynamicsEngine |
16 | ;physics = modified_BulletX | 16 | ;physics = modified_BulletX |
17 | 17 | ||
18 | ; Prim Storage | 18 | ; *** Prim Storage - only leave one storage_plugin uncommented *** |
19 | ; if you would like to use sqlite uncomment the following line (and | 19 | ; --- The NullStorage stores nothing - effectively disabling persistence. |
20 | ; comment the NullStorage line) | 20 | ; storage_plugin = "OpenSim.DataStore.NullStorage.dll" |
21 | |||
22 | ; --- To use sqlite as region storage - don't forget to add datastore="MonoSqliteFilename.db" | ||
23 | ; to region config xml (ie /Regions/default.xml) as the storages are (currently supposed to be) per region. | ||
21 | storage_plugin = "OpenSim.DataStore.MonoSqlite.dll" | 24 | storage_plugin = "OpenSim.DataStore.MonoSqlite.dll" |
22 | ;storage_plugin = "OpenSim.DataStore.NullStorage.dll" | 25 | |
26 | ; --- This is to use MySQL storage - don't forget to add datastore="<MySql Connection String>" | ||
27 | ; to region config xml (ie /Regions/default.xml) as the storages are (currently supposed to be) per region. | ||
28 | ; storage_plugin="OpenSim.Framework.Data.MySQL.dll" | ||
29 | |||
23 | startup_console_commands_file = "startup_commands.txt" | 30 | startup_console_commands_file = "startup_commands.txt" |
24 | shutdown_console_commands_file = "shutdown_commands.txt" | 31 | shutdown_console_commands_file = "shutdown_commands.txt" |
25 | serverside_object_permissions = false | 32 | serverside_object_permissions = false |