diff options
author | Sean Dague | 2008-05-14 19:13:54 +0000 |
---|---|---|
committer | Sean Dague | 2008-05-14 19:13:54 +0000 |
commit | 4a07038bbe616d05fbb3dfad79ec72a3169de589 (patch) | |
tree | 2ce85f8ef8818acf92c7f7ce1adbb9b772feb45d /bin/OpenSim.ini.example | |
parent | From: Dr Schofield <hud@zurich.ibm.com> (diff) | |
download | opensim-SC_OLD-4a07038bbe616d05fbb3dfad79ec72a3169de589.zip opensim-SC_OLD-4a07038bbe616d05fbb3dfad79ec72a3169de589.tar.gz opensim-SC_OLD-4a07038bbe616d05fbb3dfad79ec72a3169de589.tar.bz2 opensim-SC_OLD-4a07038bbe616d05fbb3dfad79ec72a3169de589.tar.xz |
From: Dr Scofield <DrScofield@xyzzyxyzzy.net>
the attached patch set adds the (still work-in-progress but already
working) RestPlugin base class and the RestRegionPlugin code. we are using
XML serialization.
currently working:
GET /admin/regions/ -> returns UUID list of known regions
GET /admin/regions/<UUID> -> returns detailed region information
we'll be adding support for POST/DELETE/PUT and also for
/admin/regions/<UUID>/name etc.
Diffstat (limited to 'bin/OpenSim.ini.example')
-rw-r--r-- | bin/OpenSim.ini.example | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 62c03f0..7c877f0 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example | |||
@@ -162,6 +162,14 @@ shout_distance = 100 | |||
162 | enabled = false | 162 | enabled = false |
163 | access_password = unknown | 163 | access_password = unknown |
164 | 164 | ||
165 | [RestPlugins] | ||
166 | enabled = false | ||
167 | password = unknown | ||
168 | prefix = /admin | ||
169 | |||
170 | [RestRegionPlugin] | ||
171 | enabled = false | ||
172 | |||
165 | ; Uncomment the following for IRC bridge | 173 | ; Uncomment the following for IRC bridge |
166 | ; experimental, so if it breaks... keep both parts... yada yada | 174 | ; experimental, so if it breaks... keep both parts... yada yada |
167 | ; also, not good error detection when it fails | 175 | ; also, not good error detection when it fails |
@@ -326,10 +334,6 @@ CleanUpOldScriptsOnStartup=true | |||
326 | ; Set the following to true to allow administrator owned scripts to execute console commands | 334 | ; Set the following to true to allow administrator owned scripts to execute console commands |
327 | AllowosConsoleCommand=false | 335 | AllowosConsoleCommand=false |
328 | 336 | ||
329 | ; Maximum number of llListen events we allow globally in the region | ||
330 | ; Set this to 0 to have no limit imposed. | ||
331 | max_listens_per_region = 1000 | ||
332 | |||
333 | ; Maximum number of llListen events we allow per script | 337 | ; Maximum number of llListen events we allow per script |
334 | ; Set this to 0 to have no limit imposed. | 338 | ; Set this to 0 to have no limit imposed. |
335 | max_listens_per_script = 64 | 339 | max_listens_per_script = 64 |