diff options
author | John Hurliman | 2010-01-12 10:27:21 -0800 |
---|---|---|
committer | John Hurliman | 2010-01-12 10:27:21 -0800 |
commit | a8b1a57cd11facdf2c5c583cfa766a44fe5f99c5 (patch) | |
tree | bf12b759e693d6b99494dfa19fb23e13488dd977 /bin/OpenSim.ini.example | |
parent | Bug in llGetNumberOfPrims always returns to script when no clients are connec... (diff) | |
parent | Add the option to reject duplicate region names (diff) | |
download | opensim-SC_OLD-a8b1a57cd11facdf2c5c583cfa766a44fe5f99c5.zip opensim-SC_OLD-a8b1a57cd11facdf2c5c583cfa766a44fe5f99c5.tar.gz opensim-SC_OLD-a8b1a57cd11facdf2c5c583cfa766a44fe5f99c5.tar.bz2 opensim-SC_OLD-a8b1a57cd11facdf2c5c583cfa766a44fe5f99c5.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'bin/OpenSim.ini.example')
-rw-r--r-- | bin/OpenSim.ini.example | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 0667047..6a117c9 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 |
@@ -318,6 +326,7 @@ | |||
318 | ConsoleUser = "Test" | 326 | ConsoleUser = "Test" |
319 | ConsolePass = "secret" | 327 | ConsolePass = "secret" |
320 | http_listener_port = 9000 | 328 | http_listener_port = 9000 |
329 | console_port = 0 | ||
321 | default_location_x = 1000 | 330 | default_location_x = 1000 |
322 | default_location_y = 1000 | 331 | default_location_y = 1000 |
323 | 332 | ||
@@ -978,6 +987,11 @@ | |||
978 | ; Compile debug info (line numbers) into the script assemblies | 987 | ; Compile debug info (line numbers) into the script assemblies |
979 | CompileWithDebugInformation = true | 988 | CompileWithDebugInformation = true |
980 | 989 | ||
990 | ; Allow the user of mod* functions. This allows a script to pass messages | ||
991 | ; to a region module via the modSendCommand() function | ||
992 | ; Default is false | ||
993 | AllowMODFunctions = false | ||
994 | |||
981 | ; Allow the use of os* functions (some are dangerous) | 995 | ; Allow the use of os* functions (some are dangerous) |
982 | AllowOSFunctions = false | 996 | AllowOSFunctions = false |
983 | 997 | ||