-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
37 lines (29 loc) · 939 Bytes
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php // Moodle configuration file
unset($CFG);
global $CFG;
$CFG = new stdClass();
$CFG->dbtype = 'mariadb';
$CFG->dblibrary = 'native';
$CFG->dbhost = '127.0.0.1';
$CFG->dbname = 'moodle';
$CFG->dbuser = 'moodle';
$CFG->dbpass = 'moodle';
$CFG->prefix = 'mdl_';
$CFG->dboptions = array (
'dbpersist' => 0,
'dbport' => 3306,
'dbsocket' => '',
'dbcollation' => 'utf8mb4_general_ci',
);
$CFG->wwwroot = 'http://127.0.0.1/ikarion_moodle';
$CFG->dataroot = 'C:\\xampp\\moodledata';
$CFG->admin = 'admin';
$CFG->directorypermissions = 0777;
$CFG->encryptmethod = 'AES-128-ECB';
$CFG->encryptkey = 'IdNOo=@GjI*f&|dA';
$CFG->xpsurl = 'http://cosa-app.fh-luebeck.de';
$CFG->xpsport = '50101';
$CFG->xpstoken = '285e19f20beded7d215102b49d5c09a0';
require_once(__DIR__ . '/lib/setup.php');
// There is no php closing tag in this file,
// it is intentional because it prevents trailing whitespace problems!