/** * The base configuration for WordPress * * The wp-config.php creation script uses this file during the * installation. You don't have to use the web site, you can * copy this file to "wp-config.php" and fill in the values. * * This file contains the following configurations: * * * MySQL settings * * Secret keys * * Database table prefix * * ABSPATH * * @link https://codex.wordpress.org/Editing_wp-config.php * * @package WordPress */ // ** MySQL settings - You can get this info from your web host ** // /** The name of the database for WordPress */ define( 'DB_NAME', 'nci_live' ); /** MySQL database username */ define( 'DB_USER', 'nci_live' ); /** MySQL database password */ define( 'DB_PASSWORD', 'EMYHQLPYWZQJCYGFQRZCDHVQVIAJQEMT' ); /** MySQL hostname */ // define( 'DB_HOST', 'localhost' ); define( 'DB_HOST', 'proxy-1731883304994-chg-aurora-us.proxy-ceuszl3n477i.us-west-2.rds.amazonaws.com' ); // define( 'DB_HOST_REPLICA', 'proxy-1731883304994-chg-aurora-us-read-only.endpoint.proxy-ceuszl3n477i.us-west-2.rds.amazonaws.com' ); /** Database Charset to use in creating database tables. */ define('DB_CHARSET', 'utf8'); /** The Database Collate type. Don't change this if in doubt. */ define('DB_COLLATE', ''); /** * Authentication Unique Keys and Salts. * * Change these to different unique phrases! * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service} * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again. * * @since 2.6.0 */ define( 'AUTH_KEY', '5tsvefK4yU60d492iIahFxAjiD7kz1OUYylTBiENmc5eZ2KIwiTZS9t2H56jxMUy' ); define( 'SECURE_AUTH_KEY', 'AiKPQV1lcscVVg2P5hUPeKIg7ts2sVgJVV85sdTb10Cie8vqeV6LElFL2Eqd2AMf' ); define( 'LOGGED_IN_KEY', 'JuivqLq8Ia0KUH8lCd9aM06nFUJQcLCZqd5M5r8KB0vs4PrODrgxiighleePCY0o' ); define( 'NONCE_KEY', 'XuIjGOTLmK3He7TWL53ZERbqeFUNULxmaalujnSsqi2jAt4nF8wMhrtTT8w52sl2' ); define( 'AUTH_SALT', 'UqSjUcY0nVmxsXr0ZqPPLUG1mKCNjT5z7rIYYKEcHxnbKPkUAeSIKys9J9peWM7E' ); define( 'SECURE_AUTH_SALT', 'QX4tmm4S6e0fyxFaOBjMJxyioJ42v75CoSoqes8M4JzW2OeaDQmRtPCI2cUXTZ6E' ); define( 'LOGGED_IN_SALT', 'AtUTHxbwk3Xe54I10AVqXcWqUEs5aJXbjNJ8sNbJ2Ia31O5DwfW61DLUP7Y4VtX4' ); define( 'NONCE_SALT', 'iiV9LHLxsUas5xA2iFCDFooNGa5IDoy9T5M7cLUV01WVlN00h4eMrTG2omYTEzP3' ); define( 'WP_CACHE_KEY_SALT', 'r43qwtJhTs7biAptIH18x65xlDatRK604IQTwVjrLDR4U6rtaNH3lXdvdECfA69Y' ); /** * WordPress Database Table prefix. * * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! */ $table_prefix = 'wp_'; const WP_REDIS_CONFIG = [ 'token' => 'a6da09fc1ec34ecc4777e601fa1c16140905d15ddb458fafc28e4e0248e5', 'host' => 'chg-valkey-us-001.6gyqk2.0001.usw2.cache.amazonaws.com', 'port' => 6379, 'database' => 3, // change for each site 'maxttl' => 86400 * 7, 'timeout' => 1.0, 'read_timeout' => 1.0, // 'split_alloptions' => true, 'shared' => true, 'debug' => false, ]; define('WP_REDIS_DISABLED', false); //wp_cron fired by server cron job define( 'DISABLE_WP_CRON', true ); // Offload Media - using the full S3 abd CF access define( 'AS3CF_SETTINGS', serialize( array( 'provider' => 'aws', 'access-key-id' => 'AKIAIIHWVJLGVMPZOIZQ', 'secret-access-key' => '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', // 'copy-to-s3' => false, ) ) ); define('WP_MEMORY_LIMIT', '512M'); define('WP_MAX_MEMORY_LIMIT', '1024'); define('WP_POST_REVISIONS', false); // define('CHFI_LOGS', ['NEWRELIC']); const X_CHFI_LOGS = [ 'DEBUG' => [ 'disabled' => false, 'maxFileSizeMb' => 20 ], 'NEWRELIC' => [ 'disabled' => false, 'nrLogsApiKey' => 'c77f34ba44c6e690ade70f623bf6522dFFFFNRAL', 'nrLogsLogType' => 'nci' ] ]; define( 'WP_DEBUG', true ); //define( 'WP_DEBUG_LOG', true ); // use @ini_set() define( 'WP_DEBUG_DISPLAY', false ); @ini_set( 'display_errors', 0 ); @ini_set('error_log', dirname( __FILE__ ) . '/logs/debug.log'); /* That's all, stop editing! Happy publishing. */ /** 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';