How do i get my config virables from the config.php file, intro my controller?
You can register the configuration as a service and then access it via the service locator:
$di->set('config', $config);
Thank you so much :-)!