config.php is looking like:
<?php // Moodle configuration file
unset($CFG);
global $CFG;
$CFG = new stdClass();
$CFG->dbtype = '
mariadb';
$CFG->dblibrary = 'native';
$CFG->dbhost = 'localhost';
$CFG->dbname = 'lentopallo_mo2';
$CFG->dbuser = 'lentopallo_mo2';
$CFG->dbpass = 'xxxxxxxxxxxxxxxxxx';
$CFG->prefix = 'mo_';
$CFG->dboptions = array (
'dbpersist' => 0,
'dbport' => 3306,
'dbsocket' => '0',
'dbcollation' => 'utf8_unicode_ci',
);
$CFG->
wwwroot = 'xxxxxxxxxxxxxx/edu';
$CFG->
dataroot = '/home/xxxxxxxxxxxxxxxx/public_html/edu/.htedesjg7wpr1x.data/';
$CFG->admin = 'admin';
$CFG->directorypermissions = 0777;
require_once(__DIR__ . '/lib/setup.php');
// There is no php closing tag in this file,
// it is intentional because it prevents trailing whitespace problems!