aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin
diff options
context:
space:
mode:
authorDr Scofield2008-08-21 11:04:57 +0000
committerDr Scofield2008-08-21 11:04:57 +0000
commitff2eb24022f906ea20e673756d2b72162e707491 (patch)
tree8d28bafebf7530fd9f1ee291f3267b30fc2134bf /bin
parentfixing Rest/Inventory stuff again. changes somehow got lost locally. (diff)
downloadopensim-SC_OLD-ff2eb24022f906ea20e673756d2b72162e707491.zip
opensim-SC_OLD-ff2eb24022f906ea20e673756d2b72162e707491.tar.gz
opensim-SC_OLD-ff2eb24022f906ea20e673756d2b72162e707491.tar.bz2
opensim-SC_OLD-ff2eb24022f906ea20e673756d2b72162e707491.tar.xz
- corrects statement about {asset,user,inventory} source configuration
as those all work with MySQL (and are in fact required it seems); adds examples as well - adds region_file_template functionality for the create_region XmlRpc call of RemoteAdminPlugin - cleans up and fixes typo in UserProfileData
Diffstat (limited to 'bin')
-rw-r--r--bin/OpenSim.ini.example24
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
141inventory_plugin = "OpenSim.Data.SQLite.dll" 143inventory_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
155default_location_x = 1000 161default_location_x = 1000
156default_location_y = 1000 162default_location_y = 1000
@@ -329,6 +335,16 @@ mesh_physical_lod = 16
329enabled = false 335enabled = false
330access_password = unknown 336access_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
347region_file_template = "{0}x{1}-{2}.xml"
332 348
333[RestPlugins] 349[RestPlugins]
334enabled = false 350enabled = false