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_username' );
/** 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_';
/* Custom Site URL */
define( 'WP_SITEURL', 'https://site.com' );
define( 'WP_CONTENT_URL', 'https://wp.site.com/wp-content/' );
define( 'WP_PLUGIN_URL', 'https://wp.site.com/plugins' );
define( 'WP_HOME', 'https://wp.site.com/' );
define( 'UPLOADS', 'https://wp.site.com/uploads' );
define( 'COOKIE_DOMAIN', 'https://site.com' );
/**#@+
* 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', '(6D~6~AuW|=l|Gm?Q<tVF0R.^CVkMoDu,*tiUv-CGBNkY(12<R@u<Tt)Xi4IGq|g');
define('SECURE_AUTH_KEY', '*gjA-+1i^VNj=|i*~~UzgX-Gn@7t[`t9R)#b+eyF4VY|Lc`:jxMmj6 ah(<|]iSA');
define('LOGGED_IN_KEY', '#!BV:nKr`Gh-qG5@D&O3r)SHNnA2Evr^[`Qf-=]9g~$pAune9]!kg:tTw|/_)BDp');
define('NONCE_KEY', 'yz0Th4yx@V|}kztmpAl YRhv1LLHs) Kt/+q1MOmg-VpCl|D?_rW.+HQ]D8d8rU+');
define('AUTH_SALT', '27;:pD1a WVjuj0#x^|rW;z6+^5w[/f[]4{03; 0%-c,Hso&8g|j*v9[]2AK_K}#');
define('SECURE_AUTH_SALT', '7*Ye!<K{kMes-eQ5-~F})Pj2-|R!.k@>kw5{(,AJb}wibOv yn`Mad]US&*J?-U9');
define('LOGGED_IN_SALT', '{d3S@|,=C^1hSa+ml4ZeZ , O87v:h4*KTihZGJzJnP[c-(G|3%??}RiGKWX(h@t');
define('NONCE_SALT', 'N=IMT6Mh;:V`HF5ads%I`X>[)j@|;}Q5yBBfOY4[]C}R[VMec9+O+Z:|O++w~ac+');
/* 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');
