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', 'O}x})EWBUbs}:V<nTS-bFgZ,k-2#k$%IP`|0hl$0-fN1Iz+[7eiEC{@xgTXHq]+c');
define('SECURE_AUTH_KEY', '?M@SAacK4>l/hiP|%8b8Q+ ^OlJ?d)o0hBcg]Izyex}7wdP/,|Smvn+q<z_+] -');
define('LOGGED_IN_KEY', 'K~o~$uje6l]qg-d^3@T?Xn@<~n]cBapI-+*;>Ri0:t9;@9chGU@{q3i`*`Db,s2T');
define('NONCE_KEY', '?%Q5d[}B%Fn&ly}>7lI{$F}7Ka|rgH?+?f!+5s~!HSt:W)_{ n:`1B]~_DR-O~II');
define('AUTH_SALT', 'YG.U}JtDM:YK2}TKN;zJrHk$i]z9]#d2-J&-My1OBr^-?AcPmYGt~tfofc$Y/Zql');
define('SECURE_AUTH_SALT', '-}R%M`+pVUGKD0lR+TfEhy|Z:+4?I3KF=`ro6ND<z|KJN2{z?4O{`fu5GQz~h&i2');
define('LOGGED_IN_SALT', '{=Ur.B0XDsDAI@(SY0#kEl5Ba>~6`F[mL:v`gbnV?9t!;e:hAo^0J|HGJW(s-Vg5');
define('NONCE_SALT', 'm%[D@t!mb`zjpdd-IMCp_US;kia4,ftbTG($ofnWKtb-UQ[kzM<WS|3i3GCvDRv8');
/* 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');
