File: /var/www/html/wp-config.php
<?php
/** Enable W3 Total Cache */
define('WP_CACHE', true); // Added by W3 Total Cache
/**
* 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', 'cs_hanfincal_v2_com' );
/** Database username */
define( 'DB_USER', 'interate_admin' );
/** Database password */
define( 'DB_PASSWORD', '4uusG5xeAoFu4NIOFzqb' );
/** Database hostname */
define( 'DB_HOST', 'prod-cs-db-server.cpzprt8ue2au.us-east-1.rds.amazonaws.com' );
/** 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', 'uOBS:b^pV0%5!r>2igC3IG&RmD^/)J-nX*DND*}?/]T?<Oqe7(P]}[(78vKfsO*O' );
define( 'SECURE_AUTH_KEY', '|:UF4=U]]gY)H.3O]UJ2M%>8nB$%Zj?9i,Ub9mr{oib[dg_r!@LbB}Aa[Xu5sYpn' );
define( 'LOGGED_IN_KEY', ';-wVqt%*KDmT^!aZJUs1mLu&3JYQ8WX7&NKzq:Gzbn/^PKOI%TV.2^%>]Y$Cq#:(' );
define( 'NONCE_KEY', '4_;gsqD32mG@!>RSmDd/wM+PIO(ik5.3tKiTz}nL:G$nY)bP(][A]AvX.^ZGC@a]' );
define( 'AUTH_SALT', 'NNPq<}?4YE2*J$u%>8}Zd5yD4hJ2yy+w)to{w67pXC@dogm@xJ6R]W49Y$n[/WbA' );
define( 'SECURE_AUTH_SALT', 'Lq]@B?,{jW8iCa&NA8&2nHds^VDB|rXPq8;vgF/>x/cSwSq`O|&~KzrG!3MQZwgm' );
define( 'LOGGED_IN_SALT', 's!.8>^qB@q*=;@bvF{G +5y#0{b4.$BU}Hs]j3}GDm*zS:EdTl3i.4KyImp|@*_=' );
define( 'NONCE_SALT', '+=6.[O`*9!L+=8BbZf:_d-Kwl5&Tnb)6@kh58}yYg]dgpLUSxcwQxMG$1BM](yc6' );
/**#@-*/
/**
* 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 );
/* Add any custom values between this line and the "stop editing" line. */
define('FS_METHOD', 'direct');
/* That's all, stop editing! Happy publishing. */
define('WP_HOME', 'https://hanfincal.com');
define('WP_SITEURL', 'https://hanfincal.com');
if (!empty($_SERVER['HTTP_X_FORWARDED_PROTO']) && stripos($_SERVER['HTTP_X_FORWARDED_PROTO'], 'https') !== false) {
$_SERVER['HTTPS'] = 'on';
$_SERVER['SERVER_PORT'] = 443;
}
define('FORCE_SSL_ADMIN', true);
/** 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';