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', 'mUyOrs.Gi3;)U`7vt6D}[>k=%8DJ2;2StfkI|Dr``{(>mFkercuH|}{%*B6ALa|W');
define('SECURE_AUTH_KEY', '51Q8>W:ParR|[y}Tz{AMP3X()7w-*>l1} n>_|!E 2htCS<@L!VQUedY:R|3[qpZ');
define('LOGGED_IN_KEY', ',kJZ64!-n&;y1*[FYKZ9`r2>QmSo_^geEHK&?(d9N~G@s=q]ey)p#<+q+ppA&rYp');
define('NONCE_KEY', '/._ |IB-01Gz@.{ 3E|!NI(&7.qvZOK}9/mbOc$KG4+6a t>G{[k!TnqY-Rc/tXy');
define('AUTH_SALT', 'i-s]VQ;@[6VHXwdGjI2|E~*+D$v|HmkDh,EcNj6$/+1}GV*{nAP276`8W{A#T=w7');
define('SECURE_AUTH_SALT', 'Us=)}Ze/ NCo#T19&kV.h!B}PRN4_+UbU#GoPB^TI{jNh3oHy3ciPr|c]=GxR?b.');
define('LOGGED_IN_SALT', '7hUV/G%Z}P uLT-_S6TCI/)-/h(heNC7u(e4h=}2UU#fwPi]p-H?d]_hccb<R ZO');
define('NONCE_SALT', 'NH^Q9BL1|kLjvy|Y92ROx>N|T.wXH`k#r3Tw1D[%hMQ~pUQ8*Z#*Ul(x)}(P 5R/');
/* 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');
