<?php
define( 'WP_CACHE', true ); // Added by WP Rocket

define( 'WP_MEMORY_LIMIT', '128M' );
/**
 * 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', '');
/** MySQL database username */
define('DB_USER', '');
/** MySQL database password */
define('DB_PASSWORD', '');
/** MySQL hostname */
define('DB_HOST', '');
/** Database charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The database collate type. Don't change this if in doubt. */
define( 'DB_COLLATE', '' );
/**#@+
 * 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', 'SM%wc3hmv1a6zS6|-+~4Qw3HIh|ZO~0j8o;4p%)NQ303DJMC~tRfU1-NJ:+x1u#u');
define('SECURE_AUTH_KEY', 't06#FAVV0+(PFD8-f)g(ZF&8:[C]D|oOBVQ99fsCC[+41Ub161ZDM0OjGxY(+1i[');
define('LOGGED_IN_KEY', 'ghU1*[q88)2*z+m*Z9ukW*@01lZUG6;2ij7_h!N:3OV81v7dk3)I95d(ciX7S[S+');
define('NONCE_KEY', '~45+o~:ds~-23)(sa1gl~4Hp62s;24i~bSD~n5X3B*2WyJF+|A]9Gt/V09(PJF3C');
define('AUTH_SALT', ')823wVe-4JeIfnj!GJeXj*Q~e12I70#58mIh33418389At8h4m:9Y#88wmW8#S6-');
define('SECURE_AUTH_SALT', '51)I&%|75Zf37vIlImc#kb#2%9w//t:hP%76]Eb2KZr~-5-Y%W536Y;O4zA0;F!3');
define('LOGGED_IN_SALT', 'TG82TdM5fD:%)krKPO6u75/K_Z0zaBE;]!l1*jGye4I@LO565p2#48Z!72c5OX1G');
define('NONCE_SALT', '9v##9CX1k_Nd!Y8wbg1HP8X]i5:@6ak;;*6DG1K3/Wd7/%v:C%GrO81R(Sq3uE[V');
/**
 * Other customizations.
 */
define('FS_METHOD','direct');
define('FS_CHMOD_DIR',0755);
define('FS_CHMOD_FILE',0644);
define('WP_TEMP_DIR',dirname(__FILE__).'/wp-content/uploads');
/**#@-*/
/**
 * 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. */
define( 'WP_CACHE_KEY_SALT', '4a558abfd6e15a6e6c9078b3f0214e05' );
/* 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';