aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/config
diff options
context:
space:
mode:
authorDavid Walter Seikel2016-11-03 21:44:39 +1000
committerDavid Walter Seikel2016-11-03 21:44:39 +1000
commit134f86e8d5c414409631b25b8c6f0ee45fbd8631 (patch)
tree216b89d3fb89acfb81be1e440c25c41ab09fa96d /config
parentMore changing to production grid. Double oops. (diff)
downloadopensim-SC_OLD-134f86e8d5c414409631b25b8c6f0ee45fbd8631.zip
opensim-SC_OLD-134f86e8d5c414409631b25b8c6f0ee45fbd8631.tar.gz
opensim-SC_OLD-134f86e8d5c414409631b25b8c6f0ee45fbd8631.tar.bz2
opensim-SC_OLD-134f86e8d5c414409631b25b8c6f0ee45fbd8631.tar.xz
Initial update to OpenSim 0.8.2.1 source code.
Diffstat (limited to 'config')
-rw-r--r--config/addon-modules/README1
-rw-r--r--config/os_flotsam_config.php42
-rw-r--r--config/os_modules_mysql.php6
3 files changed, 0 insertions, 49 deletions
diff --git a/config/addon-modules/README b/config/addon-modules/README
deleted file mode 100644
index 120dbc9..0000000
--- a/config/addon-modules/README
+++ /dev/null
@@ -1 +0,0 @@
1Place .ini files here to have them picked up automatically
diff --git a/config/os_flotsam_config.php b/config/os_flotsam_config.php
deleted file mode 100644
index c00fd8d..0000000
--- a/config/os_flotsam_config.php
+++ /dev/null
@@ -1,42 +0,0 @@
1<?php
2 // be sure to set "error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED" in your php.ini
3
4 // Set to 0 for no debugging, 1 for essential debugging, 2 for more information.
5 $debugXMLRPC = 0;
6 $debugXMLRPCFile = "/var/log/opensim_beta/xmlrpc.log";
7
8 //////////////////////////////
9 //// Group security
10 /////////////////////
11
12 // A xmlrpc client must have this key to commit changes to the Groups DB
13 // Leave blank to allow all clients to make changes.
14 $groupWriteKey = '';
15 $groupReadKey = '';
16
17 // Enabling this, will require that the service attempt to verify the agent
18 // is authentic by contacting the User Service specified in the request
19 // to authenticate the AgentID and SessionID provided.
20 $groupRequireAgentAuthForWrite = FALSE;
21
22 // This enforces the role Permissions bitmask.
23 $groupEnforceGroupPerms = FALSE;
24
25 // Specify the following to hard-code / lockdown the User Service used to authenticate
26 // user sessions. Example: http://osgrid.org:8002
27 // Note: This causes the User Service specified with requests to be ignored, and
28 // prevents the service from being used cross-grid or by hypergridded users.
29 $overrideAgentUserService = '';
30
31
32 // This setting configures the behavior of the "Members are Visible" checkbox
33 // provided for on the Role configuration panel -- and determines who is allowed
34 // to get a list of members for a role when that checkbox is *NOT* checked.
35
36 $membersVisibleTo = 'Group'; // Anyone in the group can see members
37 // $membersVisibleTo = 'Owners'; // Only members of the owners role can see members
38 // $membersVisibleTo = 'All'; // Anyone can see members
39
40 // Enable UTF-8 characters in group descriptions, ranks or notices, to prevent them from getting garbled:
41 $xmlrpc_internalencoding = 'UTF-8'
42?>
diff --git a/config/os_modules_mysql.php b/config/os_modules_mysql.php
deleted file mode 100644
index f425149..0000000
--- a/config/os_modules_mysql.php
+++ /dev/null
@@ -1,6 +0,0 @@
1<?php
2$DB_HOST = "localhost";
3$DB_USER = "DATABASE_USER";
4$DB_PASSWORD = "DATABASE_PASSWORD";
5$DB_NAME = "DATABASE_NAME";
6?>