80 lines
3.0 KiB
PHP
80 lines
3.0 KiB
PHP
<?php
|
|
/**
|
|
* 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
|
|
*/
|
|
/**
|
|
* Database connection information is automatically provided.
|
|
* There is no need to set or change the following database configuration
|
|
* values:
|
|
* DB_HOST
|
|
* DB_NAME
|
|
* DB_USER
|
|
* DB_PASSWORD
|
|
* DB_CHARSET
|
|
* 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', 'tW4RZZqD9zf8_ly3mPe?<:f~R5<z>EU,eZ+RU},.vmy~vj1qHyvFXGlfs-#@CkLg');
|
|
define('SECURE_AUTH_KEY', 'p5gL_roeK*p5[L,0PVWOi-gqt6}6_r<2F<AmY;;F,(Ve1DGRqY3uq%l#9t$RNxVb');
|
|
define('LOGGED_IN_KEY', 'Qj*Yf[?;3%0i<k4p]XJfc8I8QW,<;sYp4ed6yC@ccTtCB_.VR#b4tsv<2Bg1j*iK');
|
|
define('NONCE_KEY', 'p@rt$s<kmEve#0F1=:aK2MPT_+(+v6tdH8KrpzlJyqkMDdvAfkVD]wN^Jm;oi^*b');
|
|
define('AUTH_SALT', 'Q}_^$qtsB|B:D!8i3uY2!A(?[}#_9R}q?yb5)<rU:rV)@DRiV|%O;>Nb*7f#X$ww');
|
|
define('SECURE_AUTH_SALT', 'fK<Uq,7)VdFA,iPe|=EER1roiwaj8-5|ebmm@f5Wb?%VnqY7||c{ix)Q^xP(94]m');
|
|
define('LOGGED_IN_SALT', 'hCeanPBKW.T~wJX<{QCL-.:$ET^<4OxQE-F3N7z|t6$tvN0VwI<B-Q[>-4Zo0UTQ');
|
|
define('NONCE_SALT', 'eQ3{6P6A1[Ae1OdvY$fZEjNE?J*)f#eEjvD6h@uO^{7QUY3[BRHE#z9NrrPn9j:b');
|
|
/**
|
|
* 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_';
|
|
/**
|
|
* 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.
|
|
*
|
|
* For information on other constants that can be used for debugging,
|
|
* visit the Codex.
|
|
*
|
|
* @link https://codex.wordpress.org/Debugging_in_WordPress
|
|
*/
|
|
if ( ! defined( 'WP_DEBUG') ) {
|
|
define('WP_DEBUG', false);
|
|
}
|
|
define( 'WP_ENVIRONMENT_TYPE', 'production' );
|
|
define( 'GRAVITYSMTP_SENDGRID_API_KEY', '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' );
|
|
define( 'DB_NAME', 'wordpress' );
|
|
define( 'WP_DEBUG_LOG', false );
|
|
define( 'WP_DEBUG_DISPLAY', false );
|
|
/* That's all, stop editing! Happy blogging. */
|
|
/** 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'); |