diff options
author | David Walter Seikel | 2016-11-03 21:44:39 +1000 |
---|---|---|
committer | David Walter Seikel | 2016-11-03 21:44:39 +1000 |
commit | 134f86e8d5c414409631b25b8c6f0ee45fbd8631 (patch) | |
tree | 216b89d3fb89acfb81be1e440c25c41ab09fa96d /config/os_flotsam_config.php | |
parent | More changing to production grid. Double oops. (diff) | |
download | opensim-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/os_flotsam_config.php')
-rw-r--r-- | config/os_flotsam_config.php | 42 |
1 files changed, 0 insertions, 42 deletions
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 | ?> | ||