From 6d5f79c29f8df86c0183fed3fe094cf80fddc182 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Wed, 11 Mar 2009 21:30:30 +0000 Subject: * Preliminary preview of a split of a split for OpenSim.ini.example into separate .ini.example files in a config/ directory --- .../admin/gridinfo.ini.example | 52 ++++++++++++++++++++++ .../admin/remoteadmin.ini.example | 34 ++++++++++++++ .../admin/rest.ini.example | 32 +++++++++++++ 3 files changed, 118 insertions(+) create mode 100644 bin/config.preview.donotuseyet/admin/gridinfo.ini.example create mode 100644 bin/config.preview.donotuseyet/admin/remoteadmin.ini.example create mode 100644 bin/config.preview.donotuseyet/admin/rest.ini.example (limited to 'bin/config.preview.donotuseyet/admin') diff --git a/bin/config.preview.donotuseyet/admin/gridinfo.ini.example b/bin/config.preview.donotuseyet/admin/gridinfo.ini.example new file mode 100644 index 0000000..258cecb --- /dev/null +++ b/bin/config.preview.donotuseyet/admin/gridinfo.ini.example @@ -0,0 +1,52 @@ +; This file shows initialization defaults for OpenSimulator. If you want to override these +; please copy/rename this file from .ini.example file to .ini. For example +; +; chat.ini.example => chat.ini +; +; or you can copy and paste the settings from this file directly to bin/OpenSim.ini +; + +[GridInfo] + ; These settings are used to return information on a get_grid_info call. + ; Client launcher scripts and third-party clients make use of this to + ; autoconfigure the client and to provide a nice user experience. If you + ; want to facilitate that, you should configure the settings here according + ; to your grid or standalone setup. + ; + ; See http://opensimulator.org/wiki/GridInfo + + ; login uri: for grid this is the user server URI + login = http://127.0.0.1:9000/ + + ; long grid name: the long name of your grid + gridname = "the lost continent of hippo" + + ; short grid name: the short name of your grid + gridnick = "hippogrid" + + ; login page: optional: if it exists it will be used to tell the client to use + ; this as splash page + ; currently unused + ;welcome = http://127.0.0.1/welcome + + ; helper uri: optional: if it exists if will be used to tell the client to use + ; this for all economy related things + ; currently unused + ;economy = http://127.0.0.1:9000/ + + ; web page of grid: optional: page providing further information about your grid + ; currently unused + ;about = http://127.0.0.1/about/ + + ; account creation: optional: page providing further information about obtaining + ; a user account on your grid + ; currently unused + ;register = http://127.0.0.1/register + + ; help: optional: page providing further assistance for users of your grid + ; currently unused + ;help = http://127.0.0.1/help + + ; password help: optional: page providing password assistance for users of your grid + ; currently unused + ;password = http://127.0.0.1/password diff --git a/bin/config.preview.donotuseyet/admin/remoteadmin.ini.example b/bin/config.preview.donotuseyet/admin/remoteadmin.ini.example new file mode 100644 index 0000000..5d6112d --- /dev/null +++ b/bin/config.preview.donotuseyet/admin/remoteadmin.ini.example @@ -0,0 +1,34 @@ +; This file shows initialization defaults for OpenSimulator. If you want to override these +; please copy/rename this file from .ini.example file to .ini. For example +; +; chat.ini.example => chat.ini +; +; or you can copy and paste the settings from this file directly to bin/OpenSim.ini +; + +[RemoteAdmin] + enabled = false + access_password = unknown + + ; the create_region XmlRpc call uses region_file_template to generate + ; the file name of newly create regions (if they are created + ; persistent). the parameter available are: + ; {0} - X location + ; {1} - Y location + ; {2} - region UUID + ; {3} - region port + ; {4} - region name with " ", ":", "/" mapped to "_" + + region_file_template = "{0}x{1}-{2}.xml" + + ; we can limit the number of regions that XmlRpcCreateRegion will + ; allow by setting this to a positive, non-0 number: as long as the + ; number of regions is below region_limits, XmlRpcCreateRegion will + ; succeed. setting region_limit to 0 disables the check. + ; default is 0 + ;region_limit = 0 + + ; enable only those methods you deem to be appropriate using a | delimited whitelist + ; for example, enabled_methods = admin_broadcast|admin_region_query|admin_save_oar|admin_save_xml + ; if this parameter is not specified but enabled = true, all methods will be available + enabled_methods = all diff --git a/bin/config.preview.donotuseyet/admin/rest.ini.example b/bin/config.preview.donotuseyet/admin/rest.ini.example new file mode 100644 index 0000000..e310eb9 --- /dev/null +++ b/bin/config.preview.donotuseyet/admin/rest.ini.example @@ -0,0 +1,32 @@ +; This file shows initialization defaults for OpenSimulator. If you want to override these +; please copy/rename this file from .ini.example file to .ini. For example +; +; chat.ini.example => chat.ini +; +; or you can copy and paste the settings from this file directly to bin/OpenSim.ini +; + +[RestPlugins] + ; Change this to true to enable REST Plugins. This must be true if you wish to use + ; REST Region or REST Asset and Inventory Plugins + enabled = false + god_key = SECRET + prefix = /admin + + +[RestRegionPlugin] + ; Change this to true to enable the REST Region Plugin + enabled = false + + +[RestHandler] + ; Change this to true to enable the REST Asset and Inventory Plugin + enabled = false + authenticate=true + secured=true + extended-escape=true + realm=OpenSim REST + dump-asset=false + path-fill=true + dump-line-size=32 + flush-on-error=true -- cgit v1.1