aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/config
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-03-15 01:06:16 +1000
committerDavid Walter Seikel2013-03-15 01:06:16 +1000
commit4515cca57d6a5248114b03954fe7984ba477fcce (patch)
tree2aedb44fd103effbb6c7d6870b6c2cf4b9c19c1b /config
parentAdd the SQL update scripts. (diff)
downloadopensim-SC_OLD-4515cca57d6a5248114b03954fe7984ba477fcce.zip
opensim-SC_OLD-4515cca57d6a5248114b03954fe7984ba477fcce.tar.gz
opensim-SC_OLD-4515cca57d6a5248114b03954fe7984ba477fcce.tar.bz2
opensim-SC_OLD-4515cca57d6a5248114b03954fe7984ba477fcce.tar.xz
Add grid server web scripts.
Diffstat (limited to 'config')
-rw-r--r--config/os_flotsam_config.php42
-rw-r--r--config/os_modules_mysql.php6
2 files changed, 48 insertions, 0 deletions
diff --git a/config/os_flotsam_config.php b/config/os_flotsam_config.php
new file mode 100644
index 0000000..c00fd8d
--- /dev/null
+++ b/config/os_flotsam_config.php
@@ -0,0 +1,42 @@
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
new file mode 100644
index 0000000..f425149
--- /dev/null
+++ b/config/os_modules_mysql.php
@@ -0,0 +1,6 @@
1<?php
2$DB_HOST = "localhost";
3$DB_USER = "DATABASE_USER";
4$DB_PASSWORD = "DATABASE_PASSWORD";
5$DB_NAME = "DATABASE_NAME";
6?>