62 lines
2.5 KiB
PHP
62 lines
2.5 KiB
PHP
<?php
|
|
|
|
if (file_exists(dirname(__FILE__) . '/wp-config-local.php')) {
|
|
include(dirname(__FILE__) . '/wp-config-local.php');
|
|
define('WP_LOCAL_DEV', true);
|
|
} else {
|
|
|
|
// ------------------------------------
|
|
define('DB_NAME', $_SERVER["SUBDOMAIN"]);
|
|
define('DB_USER', $_SERVER["DB_USER"]);
|
|
// --------------------------------------------
|
|
define('DB_PASSWORD', $_SERVER["DB_PASSWORD"]);
|
|
define('DB_HOST', $_SERVER["DB_HOST"]);
|
|
define('CACHE_PASSWORD', $_SERVER["CACHE_PASSWORD"]);
|
|
define('CACHE_HOST', $_SERVER["CACHE_HOST"]);
|
|
define('CACHE_PORT', '6379');
|
|
// ---------------------------------------------------
|
|
define('DB_CHARSET', 'utf8');
|
|
define('DB_COLLATE', '');
|
|
define('AUTH_KEY', 'fad5cfeb464e3cb6d2a72bfe290d84e25478753824970a9455f5cb350a9f8183');
|
|
define('SECURE_AUTH_KEY', '4238b8016c46c6b746e9fba4106c771e2f4b688b9445ad64ba7efff9a8272c9d');
|
|
define('LOGGED_IN_KEY', '4238b8016c46c6b746e9fba4106c771e2f4b688b9445ad64ba7efff9a8272c9d');
|
|
define('NONCE_KEY', '4b6f1e1470301e5d979e8d333616eaf556b4d1e980ae5f959e06dd494bb0d995');
|
|
define('AUTH_SALT', 'bc345fc63882f49dbba21248add8beb61b8e68d20ce5d4623de03022a0666c1b');
|
|
define('SECURE_AUTH_SALT', '03e361ac295e49d27bd47e6229558724bdf16e3ed9705efd2822c643c20ffdc0');
|
|
define('LOGGED_IN_SALT', '90d8f33cc74663986e2bbe86b5d11539180ea434974ea2a1e17eca04f4b54abc');
|
|
define('NONCE_SALT', '6640b7f1a18031eaf01b6e7dc3f445b6f582ab9922674c286c2b527c9c579dea');
|
|
define('RT_WP_NGINX_HELPER_CACHE_PATH', '/usr/share/nginx/subdomain/www/wp-content/uploads/cache');
|
|
$table_prefix = 'wp_';
|
|
}
|
|
|
|
define('WP_AUTO_UPDATE_CORE', false);
|
|
|
|
/**
|
|
* For developers: WordPress debugging mode.
|
|
*
|
|
* Change this to true to enable the display of notices during development.
|
|
* It is strongly recommended that plugin and theme developers use WP_DEBUG
|
|
* in their development environments.
|
|
*
|
|
* You may want to examine $_ENV['PANTHEON_ENVIRONMENT'] to set this to be
|
|
* "true" in dev, but false in test and live.
|
|
*/
|
|
if (! defined('WP_DEBUG')) {
|
|
define('WP_DEBUG', false);
|
|
}
|
|
|
|
define('WPMS_ON', true);
|
|
define('WPMS_SMTP_PASS', 'C#9!Ev-kt$$j');
|
|
|
|
// define('FORCE_SSL_ADMIN', true);
|
|
// $_SERVER['HTTPS']='on';
|
|
|
|
/* That's all, stop editing! Happy Pressing. */
|
|
|
|
/** Absolute path to the WordPress directory. */
|
|
if (!defined('ABSPATH'))
|
|
define('ABSPATH', dirname(__FILE__) . '/');
|
|
|
|
/** Sets up WordPress vars and included files. */
|
|
require_once(ABSPATH . 'wp-settings.php');
|