/
var
/
www
/
html
/
lgpd
/
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_lgpd'; $CFG->dbuser = 'mdllgpd'; $CFG->dbpass = 'lgpd1mdl$2020'; $CFG->prefix = 'mdl_'; $CFG->dboptions = array ( 'dbpersist' => 0, 'dbport' => '', 'dbsocket' => '', 'dbcollation' => 'utf8mb4_general_ci', ); $CFG->wwwroot = 'https://lgpd.vanzolini-gte.org.br'; $CFG->dataroot = '/usr/local/moodledata/moodledatalgpd'; $CFG->admin = 'admin'; $CFG->directorypermissions = 0777; $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.eadlgpd'; $CFG->session_memcached_acquire_lock_timeout = 120; $CFG->session_memcached_lock_expire = 7200; // Ignored if memcached extension <= 2.1.0 $CFG->tempdir = '/dev/shm/'; // Files used during one HTTP request only. $CFG->cachedir = '/dev/shm/'; // 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!