mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
- 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
This commit is contained in:
@@ -131,18 +131,22 @@ asset_plugin = "OpenSim.Data.SQLite.dll"
|
||||
; asset_plugin = "OpenSim.Data.MySQL.dll" ; for mysql
|
||||
; asset_plugin = "OpenSim.Data.NHibernate.dll" ; for nhibernate
|
||||
|
||||
; the Asset DB source. This only works for sqlite and nhibernate for now
|
||||
; Asset Source SQLite Exampe
|
||||
; the Asset DB source. This only works for sqlite, mysql, and nhibernate for now
|
||||
; Asset Source SQLite example
|
||||
; asset_source = "URI=file:Asset.db,version=3"
|
||||
; Asset Source NHibernate Example (DIALECT;DRIVER;CONNECTSTRING)
|
||||
; Asset Source NHibernate example (DIALECT;DRIVER;CONNECTSTRING)
|
||||
; asset_source = "SQLiteDialect;SqliteClientDriver;URI=file:Asset.db,version=3"
|
||||
; Asset Source MySQL example
|
||||
;asset_source = "Data Source=localhost;Database=opensim;User ID=opensim;Password=****;"
|
||||
|
||||
; Inventory database provider
|
||||
inventory_plugin = "OpenSim.Data.SQLite.dll"
|
||||
; inventory_plugin = "OpenSim.Data.MySQL.dll"
|
||||
; inventory_plugin = "OpenSim.Data.NHibernate.dll" ; for nhibernate
|
||||
; Inventory Source NHibernate Example (DIALECT;DRIVER;CONNECTSTRING)
|
||||
; Inventory Source NHibernate example (DIALECT;DRIVER;CONNECTSTRING)
|
||||
; inventory_source = "SQLiteDialect;SqliteClientDriver;URI=file:Inventory.db,version=3"
|
||||
; Inventory Source MySQL example
|
||||
;inventory_source = "Data Source=localhost;Database=opensim;User ID=opensim;Password=****;"
|
||||
|
||||
|
||||
; User Data Database provider
|
||||
@@ -151,6 +155,8 @@ userDatabase_plugin = "OpenSim.Data.SQLite.dll"
|
||||
; userDatabase_plugin = "OpenSim.Data.NHibernate.dll" ; for nhibernate
|
||||
; User Source NHibernate Example (DIALECT;DRIVER;CONNECTSTRING)
|
||||
; user_source = "SQLiteDialect;SqliteClientDriver;URI=file:User.db,version=3"
|
||||
; User Source MySQL example
|
||||
;user_source = "Data Source=localhost;Database=opensim;User ID=opensim;Password=****;"
|
||||
|
||||
default_location_x = 1000
|
||||
default_location_y = 1000
|
||||
@@ -329,6 +335,16 @@ mesh_physical_lod = 16
|
||||
enabled = false
|
||||
access_password = unknown
|
||||
|
||||
; the create_region XmlRpc call uses region_file_template to generate
|
||||
; the file name of newly create regions (if they are created
|
||||
; persistent). the parameter available are:
|
||||
; {0} - X location
|
||||
; {1} - Y location
|
||||
; {2} - region UUID
|
||||
; {3} - region port
|
||||
; {4} - region name with " ", ":", "/" mapped to "_"
|
||||
|
||||
region_file_template = "{0}x{1}-{2}.xml"
|
||||
|
||||
[RestPlugins]
|
||||
enabled = false
|
||||
|
||||
Reference in New Issue
Block a user