<?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', 'wp2_db' );

/** Database username */
define( 'DB_USER', 'wp.admin' );

/** Database password */
define( 'DB_PASSWORD', 'yo-shiko3.2861' );

/** Database hostname */
define( 'DB_HOST', 'localhost' );

/** 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',         'NN575>[(!|P-Uw(6iFIC%+AxaJ1+@~=P<xG-m9R=A$>_[uVe-rHyn|XaF+f?OiP ');
define('SECURE_AUTH_KEY',  'n(?nuR@9W+6]@@9N(%r{R=t,/z.7XC(|OT=xofRt-V,Ax4^(wp)qPOSUOyzWE>N5');
define('LOGGED_IN_KEY',    '-%ugMR@=|-ndn6[p+1.IOC8.^aco)hF(QA^FXxC9Zt.yng#cOz}Z95L(h^:5i/ s');
define('NONCE_KEY',        ';yn-#-5?Sdbc^uQ_SS`Ty|Ek:fOl4{|9.O0x(+<n*LbJ0U`mbF h^j?pn-Us_GZT');
define('AUTH_SALT',        ' (BRX6WPp9g&6>pS0GNw_ECB#h@Vj@n19*uV=IBt@~o.DqNXfAQKZuhZC dGuv@K');
define('SECURE_AUTH_SALT', '<3%&z%U1aIVU^2=#F3(SjV+eO=-J}e-qkUQ^r{ZrdC*81IES+ .ABx-p~v1#RiEx');
define('LOGGED_IN_SALT',   'fkPwpC+0EWBd-2oY/`sR?Z8T|it37&Uhye==SEsrcGy}[YyS+ThaLO7!M(EwURbr');
define('NONCE_SALT',       '(cgg8bg7j5w]p-154KYO_Lutl<8OR:b&YO`:(lJQh4y-212-/y6lQIv&J [Frq)Q');

/**#@-*/
##Save files direct method##
define( 'FS_METHOD', 'direct' );

##Increase memory limit, 256MB is recommended##
define('WP_MEMORY_LIMIT', '256M');


/**
 * 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://developer.wordpress.org/advanced-administration/debug/debug-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';


