<?php
define( 'DISALLOW_FILE_MODS', true );
/**
* 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', 'wp_blog' );
/** MySQL database username */
define( 'DB_USER', 'root' );
/** MySQL database password */
define( 'DB_PASSWORD', 'H5POyWwVPCmQdr7U' );
/** MySQL hostname */
define( 'DB_HOST', 'localhost' );
/** Database charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8mb4' );
/** The database collate type. Don't change this if in doubt. */
define( 'DB_COLLATE', '' );
define( 'FS_METHOD', 'direct' );
/**#@+
* 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', '0m<4[/aHc+vY.!bM=ZWbB^Bs{AD.vw4`4,Ry?F]NRi+eC8Z+2roXbXlt[`r&XF!H' );
define( 'SECURE_AUTH_KEY', 'r@|7V?{6uPCVA-FuI^b:g@Q9|`S90;=HUs13E:FMfIsRvmae865=NLs5)su<L?>I' );
define( 'LOGGED_IN_KEY', 'n-4LVHR&zK=>(b.+%rp_F_mK1T[offTh}(aJ?g(l6E&4I75#Tzl<b]>={oR ]3O0' );
define( 'NONCE_KEY', 'MSO*Y]DX>a)-lN>SjC3!~DWt7=qO$@,GwW%2)kzjUI,r/M?S@{KGKFo:|u;2:q=/' );
define( 'AUTH_SALT', '4CGYi<JuitQm1@#OFk&@a7W2QIr,0sOP~mpQ:z56`T$C_B&;ZlA/GB1|i6LKh;FT' );
define( 'SECURE_AUTH_SALT', ',Eg!g0h;0;nhfGaP[9>hMkK-OqF 3qz6wErd7;>_}dVKYnf6ddbx(]4<(]7&?T [' );
define( 'LOGGED_IN_SALT', 'tiF? rw4__o&%Z77(7sS=tAJm!Bd__:g@]e4Dk+Ga?3w4eMJIE^vXAP%jP10QdFg' );
define( 'NONCE_SALT', 'C3%x-p-xj0Dw)BJ;!)dHabl^ON@r~R/<4wU1,]wi,GNt|hXtoeDtL~du9;!_KC?%' );
/**#@-*/
/**
* 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_';
/**
* For developers: WordPress debugging mode.
*
* Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
*
* For information on other constants that can be used for debugging,
* visit the documentation.
*
* @link https://wordpress.org/support/article/debugging-in-wordpress/
*/
define( 'WP_DEBUG', false );
/* Add any custom values between this line and the "stop editing" line. */
/* That's all, stop editing! Happy publishing. */
/** 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';