diff options
author | lbsa71 | 2007-11-15 19:53:10 +0000 |
---|---|---|
committer | lbsa71 | 2007-11-15 19:53:10 +0000 |
commit | 3aed77bd2c5fecc2a077fdad501774b2b00001b1 (patch) | |
tree | 1b2273872ae95bf68999606fb8bfcedca0305638 /bin/OpenSim.ini.example | |
parent | make Stopped a bit sloppier which should help address any float round off issues (diff) | |
download | opensim-SC_OLD-3aed77bd2c5fecc2a077fdad501774b2b00001b1.zip opensim-SC_OLD-3aed77bd2c5fecc2a077fdad501774b2b00001b1.tar.gz opensim-SC_OLD-3aed77bd2c5fecc2a077fdad501774b2b00001b1.tar.bz2 opensim-SC_OLD-3aed77bd2c5fecc2a077fdad501774b2b00001b1.tar.xz |
*** BIG CHANGES : REGION STORAGE MOVED : UPDATE YOUR OpenSim.ini FROM OpenSim.ini.example **
* Now moved region storage from region to application, so we have one storage per application, instead of one per region.
* Changed so that the region store providers use connectionstrings, not filenames
* Removed various unfit fields and properties (call me Darwin)
Diffstat (limited to 'bin/OpenSim.ini.example')
-rw-r--r-- | bin/OpenSim.ini.example | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 1e64f75..6f772c4 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example | |||
@@ -16,16 +16,16 @@ physics = basicphysics | |||
16 | ;physics = modified_BulletX | 16 | ;physics = modified_BulletX |
17 | 17 | ||
18 | ; *** Prim Storage - only leave one storage_plugin uncommented *** | 18 | ; *** Prim Storage - only leave one storage_plugin uncommented *** |
19 | ; --- The NullStorage stores nothing - effectively disabling persistence. | 19 | ; --- The NullStorage stores nothing - effectively disabling persistence: |
20 | ; storage_plugin = "OpenSim.DataStore.NullStorage.dll" | 20 | ; storage_plugin = "OpenSim.DataStore.NullStorage.dll" |
21 | 21 | ||
22 | ; --- To use sqlite as region storage - don't forget to add datastore="MonoSqliteFilename.db" | 22 | ; --- To use sqlite as region storage: |
23 | ; to region config xml (ie /Regions/default.xml) as the storages are (currently supposed to be) per region. | ||
24 | storage_plugin = "OpenSim.DataStore.MonoSqlite.dll" | 23 | storage_plugin = "OpenSim.DataStore.MonoSqlite.dll" |
24 | storage_connection_string="URI=file:OpenSim.db,version=3"; | ||
25 | 25 | ||
26 | ; --- This is to use MySQL storage - don't forget to add datastore="<MySql Connection String>" | 26 | ; --- To use MySQL storage, supply your own connectionstring: |
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" | 27 | ; storage_plugin="OpenSim.Framework.Data.MySQL.dll" |
28 | ; storage_connection_string="<MySql Connection String>"; | ||
29 | 29 | ||
30 | startup_console_commands_file = "startup_commands.txt" | 30 | startup_console_commands_file = "startup_commands.txt" |
31 | shutdown_console_commands_file = "shutdown_commands.txt" | 31 | shutdown_console_commands_file = "shutdown_commands.txt" |