<?php
/**
 * The base configuration for WordPress
 *
 * The wp-config.php creation script uses this file during the installation.
 * You don't have to use the website, you can copy this file to "wp-config.php"
 * and fill in the values.
 *
 * This file contains the following configurations:
 *
 * * Database settings
 * * Secret keys
 * * Database table prefix
 * * ABSPATH
 *
 * @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/
 *
 * @package WordPress
 */

// ** Database settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', 'gymbama-wp-db' );

/** Database username */
define( 'DB_USER', 'gymbama-wp-user' );

/** Database password */
define( 'DB_PASSWORD', 'AkqwRobHbUIPgP0DNS2yQw==' );

/** Database 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', '' );

/**#@+
 * 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',         'SU:>;<2#O3S5q@)HY3yIZ:Ntutte1]gX.=W4jJ@,Lzks^Rz?:m<F<V,7.8ggr)}?' );
define( 'SECURE_AUTH_KEY',  '$ccwoyX0u2 OSHj9~R2=xi]nMA*CO9RHs&tSHgSS9$aXVctG d@u-q!hPt+$QbIi' );
define( 'LOGGED_IN_KEY',    'R~1ar#;.3FRM`#b7?an?q}`vZ(de)f~Katn2.Nb3/-M2@+%,x@+ a>NJ~baE(W*^' );
define( 'NONCE_KEY',        'a6QfD?6q^!}[Z+U1u?D f]uhDh#/1=x~JJ5[T:ny|.s/Y+l$+o[Q7_TAS|t$?`Aw' );
define( 'AUTH_SALT',        '+*q]831?]4<|m90l5lR>:OSJ`cg`Z3D[z0%|1)0>e&D%n`dJs,#(C<q(lv)BUR+C' );
define( 'SECURE_AUTH_SALT', '*W#10,A)w.K+Os`)0xT5v3r~,7wxEgf|&l/4/[.aJU)$NZ-V$?{m^`Q,4=fic~Xp' );
define( 'LOGGED_IN_SALT',   'aQpJ0VegY1EUwI7@C|9/Z%m|y_t~Tdz?>XGW:PR6Ev 5sw9f%+:js-5d4G7ZP+9n' );
define( 'NONCE_SALT',       '4gLzA6l}5=-@5aClw$~d+@l#.8m]_ Ftg:(&_|2P$ZveX#|aC{j}q|%9^3a<I.7)' );

/**#@-*/

/**
 * 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!
 *
 * At the installation time, database tables are created with the specified prefix.
 * Changing this value after WordPress is installed will make your site think
 * it has not been installed.
 *
 * @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/#table-prefix
 */
$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://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
 */
define( 'WP_DEBUG', false );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );

/* Add any custom values between this line and the "stop editing" line. */

define('WP_MEMORY_LIMIT', '512M');
define('WP_MAX_MEMORY_LIMIT', '512M');

/* 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';


/**net melli : block externol connection */

define('WP_HTTP_BLOCK_EXTERNAL', true );

