aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/OpenSim.ini (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-08-23Update documentation.onefang1-1/+1
Write some more. Correct some spelling errors. Clean up some out of date stuff. Make it consistant. Rearrange things.
2019-07-04Move the MG configs to their own file.onefang1-0/+6
2019-05-19Major clean up of .ini files.onefang1-0/+57
Sorry about the lack of details.
2007-10-25move out the config files to .example files so that theySean Dague1-54/+0
don't clobber people's configs all the time, and that we don't get new changes pulled in randomly from people's configs
2007-10-22* Major ass commit.Adam Frisby1-1/+1
* Sqlite Storage Engine now supports terrain -- however be aware that every terrain revision stored will at 512KB to your database file. At the moment it is storing every revision from the first. * Fixed an issue where by noverbose mode would display lots of useless junk. Noverbose mode is now quite usable. * Fixed a whole bunch of console message issues such as naming and categorisation
2007-10-19* Whisper, Say and Shout distances are now configurable (what the hell!)Adam Frisby1-0/+5
2007-10-19enable IRC bridge via runtime configurationSean Dague1-0/+7
2007-10-18Add gryc's patch to run commands in a shutdown_commands.txt file when the ↵Charles Krinke1-0/+2
sim is shutdown. A config setting has also been added to OpenSim.ini. Thank you very much, gryc.
2007-10-01reverting opensim.ini & ode.NET.dlldan miller1-2/+2
2007-10-01this should fix mantis 452 and related -- hollow prims work in Linux! (I hope)dan miller1-2/+2
2007-09-27That weren't supposed to go there.lbsa711-8/+8
2007-09-27* Tleiades grid mode inventory (#444) - thanx Tleiades!lbsa711-8/+8
* updated to rev 1413 on libsecondlife.dll and libsecondlife.dll.config (#423)
2007-09-11default to sqlite for assets, will help flush out any other bugsSean Dague1-3/+3
2007-09-10Added "asset_database =" option to opensim.ini, so the asset database can be ↵MW1-0/+4
selected. Currently set default back to db4o until more people test using sqlite.
2007-09-01reverting opensim.ini to proper default statedan miller1-1/+1
2007-09-01ODE bugfix: multiple avatars now supported properlydan miller1-1/+1
2007-09-01oops -- restoring opensim.inidan miller1-2/+2
2007-09-01more ODE fixes & optimizations. Works better with 1834!dan miller1-2/+2
2007-08-30default to sqlite for user storage. You will have to recreateSean Dague1-1/+2
users after this change.
2007-08-27enable sqlite storage by defaultSean Dague1-2/+2
2007-08-22Correct OpenSim.ini and inventoryStore.dbTedd Hansen1-1/+7
2007-08-22Seems like I commited OpenSim.ini and inventoryStore.db unintentionally in ↵Tedd Hansen1-7/+2
last commit...
2007-08-22GC.GetTotalMemory(true) was blocking.Tedd Hansen1-2/+2
We now support individual scripts on individual prims. Do the script dance... \o/ \o\ /o/ \o/ .o.
2007-08-21changed the comment lines from # to ; in opensim.ini.MW1-5/+6
added a serverside_object_permissions = false entry (set to true to enable permission checking on prim editing etc). set the default for standalone account authentication to be turned on (so we don't get lots of people asking why inventory doesn't work). Just remember to use "create user" to create the accounts.
2007-08-21self document how to enable prim storageSean Dague1-29/+33
2007-08-17*Moved network_servers_info.xml into OpenSim.ini under [Network]mingchen1-1/+19
2007-08-16I will get it right, honestly!MW1-1/+1
2007-08-16Sorry everyone forget to include this, if someone wants to arrange it, I ↵MW1-3/+7
will present myself on a deepgrid region for public flogging.
2007-08-15*Added the ability to run commands after all regions have started upmingchen1-0/+1
*By default, it is set to startup_commands.txt. Simply add a list of commands separated by a new line to be run or change the file by changing the path of a startup commands file in OpenSim.ini
2007-08-13The Welcome message /message of the day shown in the client during login, ↵MW1-0/+1
can now be set from the .INI file for standalone mode (change the standalone_welcome = "Welcome to OpenSim" line).
2007-08-11Made account Authentication optional in "sandbox/standalone" mode. Just ↵MW1-1/+2
change "standalone_authenticate = false" to be true in OpenSim.ini. Then as per grid mode, you can use the "create user" command to create new accounts.
2007-08-10Some cleaning up and removed a few old files no longer in use.MW1-0/+4
Temporary have had to rename the OpenSim.DataStore.MonoSqlite project to OpenSim.DataStore.MonoSqlite1, as I'm not sure what was done to stop the old project name being included in the VS2005 solution. Also some config changes: OpenSim now has a INI (OpenSim.ini) file that it will read some config settings from (if the ini file exists). Added Mono.Data.SqliteClient.dll so that we can use the same code for sqlite on Windows and mono/linux. (from what I can tell Mono class libraries have a MIT license so there should be no problems with us including this dll). So now to get the basic prim storage working , you need to first create the sqlite database file from the sqlite3-prims.sql in share directory. Then in the OpenSim.ini file, change the storage_plugin so it points to OpenSim.DataStore.MonoSqlite1.dll (storage_plugin = OpenSim.DataStore.MonoSqlite1.dll). Then in your region.xml files change the DataStore value so it is the name of your database file (at the moment you need a different sqlite3 database file for each region).