mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-02-20 01:41:27 +01:00
80 lines
2.9 KiB
PHP
80 lines
2.9 KiB
PHP
<?php
|
|
/**
|
|
* sysPass
|
|
*
|
|
* @author nuxsmin
|
|
* @link https://syspass.org
|
|
* @copyright 2012-2019, Rubén Domínguez nuxsmin@$syspass.org
|
|
*
|
|
* This file is part of sysPass.
|
|
*
|
|
* sysPass is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* sysPass is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with sysPass. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
use DI\ContainerBuilder;
|
|
use SP\Bootstrap;
|
|
|
|
require __DIR__ . DIRECTORY_SEPARATOR . 'BaseFunctions.php';
|
|
|
|
defined('APP_ROOT') || die();
|
|
defined('APP_MODULE') || define('APP_MODULE', 'web');
|
|
|
|
define('BASE_PATH', __DIR__);
|
|
define('APP_PATH', APP_ROOT . DIRECTORY_SEPARATOR . 'app');
|
|
|
|
// Please, notice that this file should be outside the webserver root. You can move it and then update this path
|
|
define('CONFIG_PATH', APP_PATH . DIRECTORY_SEPARATOR . 'config');
|
|
define('RESOURCES_PATH', APP_PATH . DIRECTORY_SEPARATOR . 'resources');
|
|
|
|
// Setup config files
|
|
define('CONFIG_FILE', CONFIG_PATH . DIRECTORY_SEPARATOR . 'config.xml');
|
|
define('ACTIONS_FILE', RESOURCES_PATH . DIRECTORY_SEPARATOR . 'actions.xml');
|
|
define('MIMETYPES_FILE', RESOURCES_PATH . DIRECTORY_SEPARATOR . 'mime.xml');
|
|
define('OLD_CONFIG_FILE', CONFIG_PATH . DIRECTORY_SEPARATOR . 'config.php');
|
|
define('LOG_FILE', CONFIG_PATH . DIRECTORY_SEPARATOR . 'syspass.log');
|
|
define('LOCK_FILE', CONFIG_PATH . DIRECTORY_SEPARATOR . '.lock');
|
|
|
|
// Setup application paths
|
|
define('MODULES_PATH', APP_PATH . DIRECTORY_SEPARATOR . 'modules');
|
|
define('LOCALES_PATH', APP_PATH . DIRECTORY_SEPARATOR . 'locales');
|
|
define('BACKUP_PATH', APP_PATH . DIRECTORY_SEPARATOR . 'backup');
|
|
define('CACHE_PATH', APP_PATH . DIRECTORY_SEPARATOR . 'cache');
|
|
define('TMP_PATH', APP_PATH . DIRECTORY_SEPARATOR . 'temp');
|
|
|
|
// Setup other paths
|
|
define('VENDOR_PATH', APP_ROOT . DIRECTORY_SEPARATOR . 'vendor');
|
|
define('SQL_PATH', APP_ROOT . DIRECTORY_SEPARATOR . 'schemas');
|
|
define('PUBLIC_PATH', APP_ROOT . DIRECTORY_SEPARATOR . 'public');
|
|
|
|
define('DEBUG', false);
|
|
|
|
// Empezar a calcular la memoria utilizada
|
|
$memInit = memory_get_usage();
|
|
|
|
require VENDOR_PATH . DIRECTORY_SEPARATOR . 'autoload.php';
|
|
require __DIR__ . DIRECTORY_SEPARATOR . 'SplClassLoader.php';
|
|
|
|
initModule(APP_MODULE);
|
|
|
|
try {
|
|
$builder = new ContainerBuilder();
|
|
$builder->writeProxiesToFile(true, CACHE_PATH . DIRECTORY_SEPARATOR . 'proxies');
|
|
$builder->addDefinitions(BASE_PATH . DIRECTORY_SEPARATOR . 'Definitions.php');
|
|
|
|
Bootstrap::run($builder->build());
|
|
} catch (\Exception $e) {
|
|
processException($e);
|
|
|
|
die($e->getMessage());
|
|
} |