0
X
Add Snippet To Project
New Project
Add To Existing Project
/**
* 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://wordpress.org/support/article/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', 'wordpress' );
/** MySQL database username */
define( 'DB_USER', 'db_user' );
/** MySQL database password */
define( 'DB_PASSWORD', 'db_password' );
/** MySQL hostname */
define( 'DB_HOST', 'localhost' );
/** The Database Charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8' );
/* Prefix For All Database Tables */
/**
* 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_';
/**#@+
* 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', 'NW?l54WE+HBMcj^3L{I0{D0d.r-%+@w.p(SKy.1quz$Y,qp)/rA&<];<Ld2I?[Cx');
define('SECURE_AUTH_KEY', '$E 1W4B]rW*t?~&L<;D=_0Q#N*aRYy}A;R{x>g`dm#h1y_PH?FJ]A;hzXu[bdpq#');
define('LOGGED_IN_KEY', 'ZEs(xZjI+?^Yj>Qeho|17n9x2JRP&G)cCx@*6.#2J?Dy-r2%yr@74~pBxi3||ngU');
define('NONCE_KEY', 'SK=k0H]k2rXIep-#kZ(4-WsLfYk6Kg`3mMcZW^[7L(od#dp]5u@($Fx{I2Zdc*=5');
define('AUTH_SALT', '1jQG!?O&p~$A hR1pQi:|3Fj-S8 nHG[Hj@01%FsD9)>`1$}u-^K5,,$]5]kk|`K');
define('SECURE_AUTH_SALT', 'dQp#vf|hin+f(ijM[g|-4Ak?3}3pj?q?sZqBsB<reov5K`.5~ji<4EC]`6X<8v[Q');
define('LOGGED_IN_SALT', 'A*;@bz+/lEEPO<k#]w6,-|(EiA@eIx2{L$0]!9TB38Pd >0Y&[)N1Y#yH&rx2l.[');
define('NONCE_SALT', '+lFi<^gfx=h^g8^e9~z)m.:}MN>u8L}9b|Iv}#/aUFE<,X._x/sC_[v.@BOTj!<I');
/* Multisite Settings */
define( 'WP_ALLOW_MULTISITE', TRUE );
/* Absolute path to the WordPress directory. */
if ( !defined('ABSPATH') )
define('ABSPATH', __DIR__ . '/');
/* Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');
