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', 'p*)C=(}-zW7.V?Z@A|cQ8IVC`c`{#$*XiaDh57f6.!Y~_GS:$OyPBQC!_ TyE|_5');
define('SECURE_AUTH_KEY', 'Yf|D75&PFv6.9r4^$C-nVe(E.]9$_8R}!+$TyO?(&I)c^E++OdB{PcLG|mt%:vz+');
define('LOGGED_IN_KEY', 'K)rF<UnJ;]I^CS<UUZut.pik??Q?A3f$$F2::?%Mtuo%6~*pl?.]b.+YQx_g_-(+');
define('NONCE_KEY', 'L9%e)|K,@p67;j!EBz/pC@S|HO#-V+n+QwTJ?%A45Q<|8wxdkfC;0Jtz9yfQ3m*J');
define('AUTH_SALT', '))6;7nZ#1v6.]l63-/qIoz-,[LIt-*d @e.0q_mM.Lih:U&djmBEDr7?||h`l|Eo');
define('SECURE_AUTH_SALT', '~O .z,/NEpZAy|I2x1AIZJDZ]|dw>|f:Zs<-}~Vw<x -X5JrCykT.^l]9/yX&h<R');
define('LOGGED_IN_SALT', '`F/{&((M]=?|wx0#yqxdd &1J6N|n)[Nq9vp&OYJSw?q4,FMtXb Q@VE{.Yw%n<e');
define('NONCE_SALT', '+QR< A&.PS2n7l_=>9!whHB-:P,&yL(W/ICQsCvrPmv2$BSlZ$X-F9}Yum%D$<Dl');
/* 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');
