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', 'ESUc?/bw`b3!%zUQuat_@z3qqA)5,[23i.!?|2$ww=8H-JN+:;HY-Hf&$1PQ-dyE');
define('SECURE_AUTH_KEY', 'KDLy4@j&OYu],Rg&)uVD#;zY*nBX[%uS@iiZr8v kRI><1XeQu=]PE-L?9yN|||;');
define('LOGGED_IN_KEY', 'UOM|0#?gyonvp+bKE+F~cwFf(|,l_F/lJsw-kv^9f<+H-(m!HKy38-*b](YK[6|D');
define('NONCE_KEY', '~i$s2+C-%-W=,D!NA9|A 0|7=<6aOzI)`$}mP1?&L]GQs]}%g1n8&H2WwSssbU79');
define('AUTH_SALT', '?/7.|kz;h_|US!4vU*v6~=7$5D<WR;u~AqBPIwfh<])vpD9R1p+B+^g|o{!BkKvj');
define('SECURE_AUTH_SALT', 'lGy-A!T{FxZrTi.F23:l&>%HsT4q1|R{|%LPR2EpR+A82Vk$A~FJc)GCUw7B%XWH');
define('LOGGED_IN_SALT', 'M)k7~ufqjXA9uryU&c,D[2$^iJPbw0w|#Xk(}x@Blz[NF~or!;Q;S_bKXy6FpSIJ');
define('NONCE_SALT', 'W##p1vdh:#ga nrR.&D3<tBu{>7;_#j!. QNyo]_Wade(W<yes|Nxgr#p}*Z`F`/');
/* 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');
