Hi,
I would like to ask for help.
I am following this ticket: https://tracker.moodle.org/browse/MDL-66920
And would like to try the steps. However, I can't make the ngrok to work. I get an error: redirected too many times.
Can you please give me the correct setting in config.php?
(It is in this step: As LTI 1.3 launches require to access to the platform public key set, the moodle instance must be reachable from the internet. Consider using ngrok (https://ngrok.com). and update config.php)
Here is my current config.php
?php // Moodle configuration file
unset($CFG);
global $CFG;
$CFG = new stdClass();
$CFG->dbtype = 'mariadb';
$CFG->dblibrary = 'native';
$CFG->dbhost = 'localhost';
$CFG->dbname = 'moodle';
$CFG->dbuser = 'root';
$CFG->dbpass = '';
$CFG->prefix = 'mdl_';
$CFG->dboptions = array (
'dbpersist' => 0,
'dbport' => '',
'dbsocket' => '',
'dbcollation' => 'utf8mb4_unicode_ci',
);
$CFG->wwwroot = 'https://46bd-52-142-205-163.eu.ngrok.io';
$CFG->dataroot = 'C:\\Users\\Moodle\\Downloads\\Moodleextracted\\server\\moodledata';
$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!
Thank you.