<?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 web site, 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
 * * Localized language
 * * ABSPATH
 *
 * @link https://wordpress.org/support/article/editing-wp-config-php/
 *
 * @package WordPress
 */

// ** Database settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', 'wp_brand_sites' );

/** Database username */
define( 'DB_USER', 'admin' );

/** Database password */
define( 'DB_PASSWORD', '*%eh9fgU3iP!5*Iw' );

/** Database hostname */
define( 'DB_HOST', 'wordpress-brand-sites.cbsljdhxwhyw.ap-northeast-1.rds.amazonaws.com' );

/** 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', '' );

define( 'WP_ALLOW_MULTISITE', true);
define( 'MULTISITE', true );
define( 'SUBDOMAIN_INSTALL', true );
define( 'DOMAIN_CURRENT_SITE', 'cbbrandsites.com' );
define( 'PATH_CURRENT_SITE', '/' );
define( 'SITE_ID_CURRENT_SITE', 1 );
define( 'BLOG_ID_CURRENT_SITE', 1 );
define('COOKIE_DOMAIN', $_SERVER['HTTP_HOST'] );
define( 'FS_METHOD', 'direct' );

define('S3_UPLOADS_BUCKET', 'wordpress-brand-sites-uploads');
define('S3_UPLOADS_BUCKET_URL', 'https://wordpress-brand-sites-uploads.s3.ap-northeast-1.amazonaws.com'); // should be the cloudfront prefix
define('S3_UPLOADS_KEY', 'AKIA5OFWHYP3RU4ZPNSK');
define('S3_UPLOADS_SECRET', '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');

define('S3_UPLOADS_REGION', 'ap-northeast-1');


/**#@+
 * 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',          'Atu*LAiFu,WA;Lr7<hdQI&ucp<Ew9vv<JD:Qyk;y$m8a9EHyQ-*#R+qCPh22z;^<' );
define( 'SECURE_AUTH_KEY',   'tfqGI,|[,DC=?LP,6j4eu%b_]DM3C8;]Nml*=cgWS[8>Zw=Eto6$ng~x6h~d*([~' );
define( 'LOGGED_IN_KEY',     '@H21C7M%)M$!%V+-!K3aXM-m247QY~R+^nG1lAV?i4u=3i<#aQx{3=z?Cz8Jzr^f' );
define( 'NONCE_KEY',         'cvMNo^Q0#3wP/[BwNQN],ez|`d>Pk[iEe{gQ$bYHZ]JF^arVKCqZ,4`.owv%;/Ie' );
define( 'AUTH_SALT',         'IUX87:cFw48C}TR1CO:aiGiOBSNc&o2?2je:!ZYCyvf3`XJ>gPNm-DORoHD64kRR' );
define( 'SECURE_AUTH_SALT',  '>=<Ha*#y_hqBw?K$F~3#4]x[b]DmO-:{qHFryKA;pP#X8Zl6M_OjNV;%d(ObgfQ9' );
define( 'LOGGED_IN_SALT',    'bhgikZqpl@P>k9<#o`Z2T*Eb@u#D+Bi7 !Nzk RR/#F`ao%yW}|FPgUqC$>jS7;W' );
define( 'NONCE_SALT',        '697+y%s)P/N#pQH1^QXDrRV;`4%)t[F&0h(H(24#^/k?(vwcX;XUs]RIP&T BM5d' );
define( 'WP_CACHE_KEY_SALT', '#$S%z#@VuwPJ>o1o@vQEIy6oAS1WTxCp:&&>N:_H{asA=9JQW<D.?.5z&fQ9tc@#' );


/**#@-*/

/**
 * 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_';


/* Add any custom values between this line and the "stop editing" line. */



/**
 * 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/
 */
if ( ! defined( 'WP_DEBUG' ) ) {
	define( 'WP_DEBUG', false );
}

/* 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';