/
pashko
/
siec
Обзор
Документация
Войти
/
pashko
/
siec
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
config/application.php
105 строк
3 KB
pash lenovo
siec bedrock
07 сен 2018, 06:40
07 сен 2018, 06:40
ec9726d
Код
Авторство
О чём код?
<?php /** * Your base production configuration goes in this file. Environment-specific * overrides go in their respective config/environments/{{WP_ENV}}.php file. * * A good default policy is to deviate from the production config as little as * possible. Try to define as much of your configuration in this file as you * can. */ use Roots\WPConfig\Config; /** @var string Directory containing all of the site's files */ $root_dir = dirname(__DIR__); /** @var string Document Root */ $webroot_dir = $root_dir . '/web'; /** * Expose global env() function from oscarotero/env */ Env::init(); /** * Use Dotenv to set required environment variables and load .env file in root */ $dotenv = new Dotenv\Dotenv($root_dir); if (file_exists($root_dir . '/.env')) { $dotenv->load(); $dotenv->required(['DB_NAME', 'DB_USER', 'DB_PASSWORD', 'WP_HOME', 'WP_SITEURL']); } /** * Set up our global environment constant and load its config first * Default: production */ define('WP_ENV', env('WP_ENV') ?: 'production'); /** * URLs */ Config::define('WP_HOME', env('WP_HOME')); Config::define('WP_SITEURL', env('WP_SITEURL')); /** * Custom Content Directory */ Config::define('CONTENT_DIR', '/app'); Config::define('WP_CONTENT_DIR', $webroot_dir . Config::get('CONTENT_DIR')); Config::define('WP_CONTENT_URL', Config::get('WP_HOME') . Config::get('CONTENT_DIR')); /** * DB settings */ Config::define('DB_NAME', env('DB_NAME')); Config::define('DB_USER', env('DB_USER')); Config::define('DB_PASSWORD', env('DB_PASSWORD')); Config::define('DB_HOST', env('DB_HOST') ?: 'localhost'); Config::define('DB_CHARSET', 'utf8mb4'); Config::define('DB_COLLATE', ''); $table_prefix = env('DB_PREFIX') ?: 'wp_'; /** * Authentication Unique Keys and Salts */ Config::define('AUTH_KEY', env('AUTH_KEY')); Config::define('SECURE_AUTH_KEY', env('SECURE_AUTH_KEY')); Config::define('LOGGED_IN_KEY', env('LOGGED_IN_KEY')); Config::define('NONCE_KEY', env('NONCE_KEY')); Config::define('AUTH_SALT', env('AUTH_SALT')); Config::define('SECURE_AUTH_SALT', env('SECURE_AUTH_SALT')); Config::define('LOGGED_IN_SALT', env('LOGGED_IN_SALT')); Config::define('NONCE_SALT', env('NONCE_SALT')); /** * Custom Settings */ Config::define('AUTOMATIC_UPDATER_DISABLED', true); Config::define('DISABLE_WP_CRON', env('DISABLE_WP_CRON') ?: false); // Disable the plugin and theme file editor in the admin Config::define('DISALLOW_FILE_EDIT', true); // Disable plugin and theme updates and installation from the admin Config::define('DISALLOW_FILE_MODS', true); /** * Debugging Settings */ Config::define('WP_DEBUG_DISPLAY', false); Config::define('SCRIPT_DEBUG', false); ini_set('display_errors', 0); $env_config = __DIR__ . '/environments/' . WP_ENV . '.php'; if (file_exists($env_config)) { require_once $env_config; } Config::apply(); /** * Bootstrap WordPress */ if (!defined('ABSPATH')) { define('ABSPATH', $webroot_dir . '/wp/'); }