<?php
define( 'WP_CACHE', true );
//define( 'AUTOMATIC_UPDATER_DISABLED', true );
define( 'WP_AUTO_UPDATE_CORE', 'minor' );
define( 'WP_MEMORY_LIMIT', '256M' );
define( 'WP_MAX_MEMORY_LIMIT', '384M' );
define( 'FORCE_SSL_LOGIN', true );
define( 'FORCE_SSL_ADMIN', 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://codex.wordpress.org/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', 'latin1');
/** 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',         '3kY.rDD&Jlb+=rkb$v?lab+.(q4q@_hSJYj|9+G7>*2OCj9M/Gy<RM-?w+_MT-*B');
define('SECURE_AUTH_KEY',  'pN_5-!tH-|8qNWiqHv-QuwUa<sNc)faf;p!D+SmQ_sn>w*pCJ6r29Q.C*M{#Dnsq');
define('LOGGED_IN_KEY',    'F+Vsw-SGu#E,3e}P?K;eKU+Ewlv!aO?%La][GSQ;+XPqIEOO4C?H$uKbWuqHX gx');
define('NONCE_KEY',        'grny]37vCv!E-Wp&W7=z0h&~I@PL?cXU(q)j-{?19%d5{X9pW+|qfz!t30DNrQy,');
define('AUTH_SALT',        ']h=3d2$U{L`:z0<)+&-Bd+o`~6Ai!pR$c&Z]sJ1{t4#-p.{}y{+B0sYb<RG-i>t}');
define('SECURE_AUTH_SALT', '{]3P+v`gcB_L|E$0`[%iVZK|@1..IoM5]_gRvl:1 7;w|aG-,2-HZtW,A5x]$W}@');
define('LOGGED_IN_SALT',   'jiq)b%(/?nVPs)C5ZB>,|1TE~JE?k:rvzcfdG`mdq+WVj&%vn;:|u5&f5c9F~Ic.');
define('NONCE_SALT',       'Z|kfUw)HnWA)eUVUyAc*;^qCgL@ZItAo`S*NI#U8XL/|hA,8b[.,gEKm]t)W[N.|');
/**#@-*/
/**
 * 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  = 'vbvl_';
/**
 * 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 Codex.
 *
 * @link https://codex.wordpress.org/Debugging_in_WordPress
 */
define( 'WP_DEBUG', true );
// Enable Debug logging to the /wp-content/debug.log file
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );
//Specify the Number of Post Revisions
define( 'WP_POST_REVISIONS', 3 );
define( 'AUTOSAVE_INTERVAL', 240 ); // Seconds
/* That's all, stop editing! Happy blogging. */
/** 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');