/
var
/
www
/
html
/
cdhu
/
Upload File
HOME
<?php // Moodle configuration file unset($CFG); global $CFG; $CFG = new stdClass(); $CFG->dbtype = 'mysqli'; $CFG->dblibrary = 'native'; $CFG->dbhost = 'gte-mysql-db-01.cwr6pbxmtszu.us-east-1.rds.amazonaws.com'; $CFG->dbname = 'mdl_cdhu'; $CFG->dbuser = 'mdlcdhu'; $CFG->dbpass = 'cdhu1mdl$2018'; $CFG->prefix = 'mdl_'; $CFG->dboptions = array ( 'dbpersist' => 0, 'dbport' => '', 'dbsocket' => '', 'dbcollation' => 'utf8mb4_general_ci', ); $CFG->wwwroot = 'https://cdhu.vanzolini-gte.org.br'; $CFG->dataroot = '/usr/local/moodledata/moodledatacdhu'; $CFG->admin = 'admin'; $CFG->directorypermissions = 0777; #$CFG->disablelogintoken = true; $CFG->session_handler_class = '\core\session\memcached'; $CFG->session_memcached_save_path = 'moodle-corp-session.3jxvap.cfg.use1.cache.amazonaws.com:11211'; $CFG->session_memcached_prefix = 'memc.sess.key.cdhufcav'; $CFG->session_memcached_acquire_lock_timeout = 120; $CFG->session_memcached_lock_expire = 7200; // Ignored if memcached extension <= 2.1.0 // $CFG->tempdir = '/var/www/moodle/temp'; // Files used during one HTTP request only. // $CFG->cachedir = '/var/www/moodle/cache'; // Directory MUST BE SHARED by all cluster nodes, locking required. $CFG->localcachedir = '/dev/shm/'; // Intended for local node caching. require_once(__DIR__ . '/lib/setup.php'); // There is no php closing tag in this file, // it is intentional because it prevents trailing whitespace problems!