diff options
author | Charles Krinke | 2008-04-07 13:50:05 +0000 |
---|---|---|
committer | Charles Krinke | 2008-04-07 13:50:05 +0000 |
commit | 927003de3364ac05a958a377d212ae0be82cc4a2 (patch) | |
tree | 5fa16fe74f73f877ef13692a92d36785edfa394f /bin/OpenSim.ini.example | |
parent | * I XmlIgnored the TaskInventory Property as a temporary measure. Taking th... (diff) | |
download | opensim-SC_OLD-927003de3364ac05a958a377d212ae0be82cc4a2.zip opensim-SC_OLD-927003de3364ac05a958a377d212ae0be82cc4a2.tar.gz opensim-SC_OLD-927003de3364ac05a958a377d212ae0be82cc4a2.tar.bz2 opensim-SC_OLD-927003de3364ac05a958a377d212ae0be82cc4a2.tar.xz |
Thank you kindly Diva & KMeisthax for adding the beginnings
of search capability to OpenSim in the form of a configurable
module.
Diffstat (limited to 'bin/OpenSim.ini.example')
-rw-r--r-- | bin/OpenSim.ini.example | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 9a49359..6d89b3e 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example | |||
@@ -7,7 +7,7 @@ gridmode = false | |||
7 | 7 | ||
8 | ; *** Prim Storage - only leave one storage_plugin uncommented *** | 8 | ; *** Prim Storage - only leave one storage_plugin uncommented *** |
9 | ; --- The NullStorage stores nothing - effectively disabling persistence: | 9 | ; --- The NullStorage stores nothing - effectively disabling persistence: |
10 | storage_plugin = "OpenSim.Data.Null.dll" | 10 | storage_plugin = "OpenSim.DataStore.NullStorage.dll" |
11 | 11 | ||
12 | ; --- To use sqlite as region storage: | 12 | ; --- To use sqlite as region storage: |
13 | ;storage_plugin = "OpenSim.Data.SQLite.dll" | 13 | ;storage_plugin = "OpenSim.Data.SQLite.dll" |
@@ -285,3 +285,19 @@ CleanUpOldScriptsOnStartup=true | |||
285 | [LL-Functions] | 285 | [LL-Functions] |
286 | ; Set the following to true to allow administrator owned scripts to execute console commands | 286 | ; Set the following to true to allow administrator owned scripts to execute console commands |
287 | AllowosConsoleCommand=false | 287 | AllowosConsoleCommand=false |
288 | |||
289 | [DataSnapshot] | ||
290 | ; The following set of configs pertains to search. | ||
291 | ; Set index_sims to true to enable search engines to index your searchable data | ||
292 | ; If false, no data will be exposed, DataSnapshot module will be off, and you can ignore the rest of these search-related configs | ||
293 | index_sims = false | ||
294 | ; If search is on, change this to your grid name; will be ignored for standalones | ||
295 | gridname = "OSGrid" | ||
296 | ; Period between data snapshots, in seconds. 20 minutes, for starters, so that you see the initial changes fast. | ||
297 | ; Later, you may want to increase this to 3600 (1 hour) or more | ||
298 | default_snapshot_period = 1200 | ||
299 | ; This will be created in bin, if it doesn't exist already. It will hold the data snapshots. | ||
300 | snapshot_cache_directory = "DataSnapshot" | ||
301 | ; This semicolon-separated string serves to notify specific data services | ||
302 | ; about the existence of this sim. | ||
303 | data_services="http://metaverseink.com/cgi-bin/register.py" | ||