raspap-webgui/raspap.php

20 lines
508 B
PHP
Raw Normal View History

2016-05-29 17:38:43 +02:00
<?php
2021-02-02 11:03:09 +01:00
function getConfig()
{
$config = array(
'admin_user' => 'admin',
'admin_pass' => '$2y$10$YKIyWAmnQLtiJAy6QgHQ.eCpY4m.HCEbiHaTgN6.acNC6bDElzt.i'
);
2016-05-29 17:38:43 +02:00
2021-02-02 11:03:09 +01:00
if (file_exists(RASPI_CONFIG . '/raspap.auth')) {
if ($auth_details = fopen(RASPI_CONFIG . '/raspap.auth', 'r')) {
$config['admin_user'] = trim(fgets($auth_details));
$config['admin_pass'] = trim(fgets($auth_details));
fclose($auth_details);
}
}
2021-02-02 11:03:09 +01:00
return $config;
2016-05-29 17:38:43 +02:00
}
2021-02-02 11:03:09 +01:00