aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/OpenSim.ini.example
diff options
context:
space:
mode:
authorMelanie2010-01-16 00:05:08 +0000
committerMelanie2010-01-16 00:05:08 +0000
commit10f8c2ea9b67158c32b361f9652d503ea48de292 (patch)
treebe0d88bc4b6df3825a0d27f62a08170d7c7ad262 /bin/OpenSim.ini.example
parentMerge branch 'presence-refactor' of ssh://diva@opensimulator.org/var/git/open... (diff)
parentAdd "create user" instructions to README.txt (diff)
downloadopensim-SC_OLD-10f8c2ea9b67158c32b361f9652d503ea48de292.zip
opensim-SC_OLD-10f8c2ea9b67158c32b361f9652d503ea48de292.tar.gz
opensim-SC_OLD-10f8c2ea9b67158c32b361f9652d503ea48de292.tar.bz2
opensim-SC_OLD-10f8c2ea9b67158c32b361f9652d503ea48de292.tar.xz
Merge branch 'master' into presence-refactor
This merge was very conflicted. I think I got them all, but I can't be sure. I had to merge to master or risk divergence to the point of unmergeability.
Diffstat (limited to 'bin/OpenSim.ini.example')
-rw-r--r--bin/OpenSim.ini.example30
1 files changed, 29 insertions, 1 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index 971dfc4..3b560de 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -126,11 +126,16 @@
126 ;storage_plugin = "OpenSim.Data.Null.dll" 126 ;storage_plugin = "OpenSim.Data.Null.dll"
127 127
128 ; --- To use sqlite as region storage: 128 ; --- To use sqlite as region storage:
129 ; NOTE: SQLite and OpenSim are not functioning properly with Mono 2.4.3 or greater.
130 ; If you are using Mono you probably should be using MySQL
129 storage_plugin = "OpenSim.Data.SQLite.dll" 131 storage_plugin = "OpenSim.Data.SQLite.dll"
130 storage_connection_string="URI=file:OpenSim.db,version=3"; 132 storage_connection_string="URI=file:OpenSim.db,version=3";
131 133
132 ; --- To use MySQL storage, supply your own connectionstring (this is only an example): 134 ; --- To use MySQL storage, supply your own connection string (this is only an example):
133 ; note that the supplied account needs create privilegies if you want it to auto-create needed tables. 135 ; note that the supplied account needs create privilegies if you want it to auto-create needed tables.
136 ;
137 ; -->>> There are multiple connection strings defined in several places in this file. Check it carefully!
138 ;
134 ; storage_plugin="OpenSim.Data.MySQL.dll" 139 ; storage_plugin="OpenSim.Data.MySQL.dll"
135 ; storage_connection_string="Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;"; 140 ; storage_connection_string="Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;";
136 ; If you want to use a different database/server for estate data, then 141 ; If you want to use a different database/server for estate data, then
@@ -263,6 +268,9 @@
263 ; Enable JSON simulator data by setting a URI name (case sensitive) 268 ; Enable JSON simulator data by setting a URI name (case sensitive)
264 ; Stats_URI = "jsonSimStats" 269 ; Stats_URI = "jsonSimStats"
265 270
271 ; Make OpenSim start all regions woth logins disabled. They will need
272 ; to be enabled from the console if this is set
273 ; StartDisabled = false
266 274
267[SMTP] 275[SMTP]
268 enabled=false 276 enabled=false
@@ -282,7 +290,18 @@
282 290
283 291
284[StandAlone] 292[StandAlone]
293 ; If this is set to true then OpenSim only allows in users who already have accounts.
294 ; An account can be created using the "create user" console command.
295 ;
296 ; If this is set to false then an account is automatically created for a user who logs in
297 ; without one. PLEASE NOTE THAT IN THIS MODE NO PASSWORD CHECKS ARE PERFORMED.
298 ; Therefore, any user can log into any account. If accounts_authenticate is later switched to
299 ; true then the passwords will need to be reset (using the "reset user password" console command) since
300 ; automatically created accounts have their password set to the string "test".
301 ;
302 ; This setting applies to standalone mode only, not grid or other modes. Default is true.
285 accounts_authenticate = true 303 accounts_authenticate = true
304
286 welcome_message = "Welcome to OpenSimulator" 305 welcome_message = "Welcome to OpenSimulator"
287 306
288 ; Inventory database provider 307 ; Inventory database provider
@@ -318,6 +337,7 @@
318 ConsoleUser = "Test" 337 ConsoleUser = "Test"
319 ConsolePass = "secret" 338 ConsolePass = "secret"
320 http_listener_port = 9000 339 http_listener_port = 9000
340 console_port = 0
321 default_location_x = 1000 341 default_location_x = 1000
322 default_location_y = 1000 342 default_location_y = 1000
323 343
@@ -474,6 +494,9 @@
474 ; MuteListModule = MuteListModule 494 ; MuteListModule = MuteListModule
475 ; MuteListURL = http://yourserver/Mute.php 495 ; MuteListURL = http://yourserver/Mute.php
476 496
497 ; Control whether group messages are forwarded to offline users. Default is true.
498 ; ForwardOfflineGroupMessages = true
499
477 500
478[ODEPhysicsSettings] 501[ODEPhysicsSettings]
479 ;## 502 ;##
@@ -977,6 +1000,11 @@
977 ; Compile debug info (line numbers) into the script assemblies 1000 ; Compile debug info (line numbers) into the script assemblies
978 CompileWithDebugInformation = true 1001 CompileWithDebugInformation = true
979 1002
1003 ; Allow the user of mod* functions. This allows a script to pass messages
1004 ; to a region module via the modSendCommand() function
1005 ; Default is false
1006 AllowMODFunctions = false
1007
980 ; Allow the use of os* functions (some are dangerous) 1008 ; Allow the use of os* functions (some are dangerous)
981 AllowOSFunctions = false 1009 AllowOSFunctions = false
982 1010