diff options
Diffstat (limited to '')
-rw-r--r-- | bin/OpenSim.ini.example | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 4801bfc..01633fa 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example | |||
@@ -131,18 +131,22 @@ asset_plugin = "OpenSim.Data.SQLite.dll" | |||
131 | ; asset_plugin = "OpenSim.Data.MySQL.dll" ; for mysql | 131 | ; asset_plugin = "OpenSim.Data.MySQL.dll" ; for mysql |
132 | ; asset_plugin = "OpenSim.Data.NHibernate.dll" ; for nhibernate | 132 | ; asset_plugin = "OpenSim.Data.NHibernate.dll" ; for nhibernate |
133 | 133 | ||
134 | ; the Asset DB source. This only works for sqlite and nhibernate for now | 134 | ; the Asset DB source. This only works for sqlite, mysql, and nhibernate for now |
135 | ; Asset Source SQLite Exampe | 135 | ; Asset Source SQLite example |
136 | ; asset_source = "URI=file:Asset.db,version=3" | 136 | ; asset_source = "URI=file:Asset.db,version=3" |
137 | ; Asset Source NHibernate Example (DIALECT;DRIVER;CONNECTSTRING) | 137 | ; Asset Source NHibernate example (DIALECT;DRIVER;CONNECTSTRING) |
138 | ; asset_source = "SQLiteDialect;SqliteClientDriver;URI=file:Asset.db,version=3" | 138 | ; asset_source = "SQLiteDialect;SqliteClientDriver;URI=file:Asset.db,version=3" |
139 | ; Asset Source MySQL example | ||
140 | ;asset_source = "Data Source=localhost;Database=opensim;User ID=opensim;Password=****;" | ||
139 | 141 | ||
140 | ; Inventory database provider | 142 | ; Inventory database provider |
141 | inventory_plugin = "OpenSim.Data.SQLite.dll" | 143 | inventory_plugin = "OpenSim.Data.SQLite.dll" |
142 | ; inventory_plugin = "OpenSim.Data.MySQL.dll" | 144 | ; inventory_plugin = "OpenSim.Data.MySQL.dll" |
143 | ; inventory_plugin = "OpenSim.Data.NHibernate.dll" ; for nhibernate | 145 | ; inventory_plugin = "OpenSim.Data.NHibernate.dll" ; for nhibernate |
144 | ; Inventory Source NHibernate Example (DIALECT;DRIVER;CONNECTSTRING) | 146 | ; Inventory Source NHibernate example (DIALECT;DRIVER;CONNECTSTRING) |
145 | ; inventory_source = "SQLiteDialect;SqliteClientDriver;URI=file:Inventory.db,version=3" | 147 | ; inventory_source = "SQLiteDialect;SqliteClientDriver;URI=file:Inventory.db,version=3" |
148 | ; Inventory Source MySQL example | ||
149 | ;inventory_source = "Data Source=localhost;Database=opensim;User ID=opensim;Password=****;" | ||
146 | 150 | ||
147 | 151 | ||
148 | ; User Data Database provider | 152 | ; User Data Database provider |
@@ -151,6 +155,8 @@ userDatabase_plugin = "OpenSim.Data.SQLite.dll" | |||
151 | ; userDatabase_plugin = "OpenSim.Data.NHibernate.dll" ; for nhibernate | 155 | ; userDatabase_plugin = "OpenSim.Data.NHibernate.dll" ; for nhibernate |
152 | ; User Source NHibernate Example (DIALECT;DRIVER;CONNECTSTRING) | 156 | ; User Source NHibernate Example (DIALECT;DRIVER;CONNECTSTRING) |
153 | ; user_source = "SQLiteDialect;SqliteClientDriver;URI=file:User.db,version=3" | 157 | ; user_source = "SQLiteDialect;SqliteClientDriver;URI=file:User.db,version=3" |
158 | ; User Source MySQL example | ||
159 | ;user_source = "Data Source=localhost;Database=opensim;User ID=opensim;Password=****;" | ||
154 | 160 | ||
155 | default_location_x = 1000 | 161 | default_location_x = 1000 |
156 | default_location_y = 1000 | 162 | default_location_y = 1000 |
@@ -329,6 +335,16 @@ mesh_physical_lod = 16 | |||
329 | enabled = false | 335 | enabled = false |
330 | access_password = unknown | 336 | access_password = unknown |
331 | 337 | ||
338 | ; the create_region XmlRpc call uses region_file_template to generate | ||
339 | ; the file name of newly create regions (if they are created | ||
340 | ; persistent). the parameter available are: | ||
341 | ; {0} - X location | ||
342 | ; {1} - Y location | ||
343 | ; {2} - region UUID | ||
344 | ; {3} - region port | ||
345 | ; {4} - region name with " ", ":", "/" mapped to "_" | ||
346 | |||
347 | region_file_template = "{0}x{1}-{2}.xml" | ||
332 | 348 | ||
333 | [RestPlugins] | 349 | [RestPlugins] |
334 | enabled = false | 350 | enabled = false |