File: /var/www/html/insiders/wp-load/wp-config.php
<?php // hey day
if(isset($_SERVER['HTTP_X_FORWARDED_PROTO'] )) {
if (strpos( $_SERVER['HTTP_X_FORWARDED_PROTO'], 'https') !== false) {
$_SERVER['HTTPS']='on';
}
};
define( 'WP_MEMORY_LIMIT', '128M' );
define( 'WP_MAX_MEMORY_LIMIT', '256M' );
define( 'FS_METHOD', 'direct');
define( 'AUTOSAVE_INTERVAL', 160 );
define( 'WP_POST_REVISIONS', 5 );
/**
* 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', 'insiderskitchen' );
/** Database username */
define( 'DB_USER', 'root' );
/** Database password */
define( 'DB_PASSWORD', 'Leg@cy60ck5' );
/** Database hostname */
define( 'DB_HOST', '192.168.1.215' );
/** 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', 'Y#_]/#84_Jdq_j]q^Wnu,3DA(9I!_#SfyUe/DH#0N!W&T xY2,a}aiS5?^=Mmozt' );
define( 'SECURE_AUTH_KEY', 'x ZQ,-vrBYlKLGTgY1RoN#DP$sFPIG<]:M<axUztib2D,h x0`6310B:!LPQe/g2' );
define( 'LOGGED_IN_KEY', 'J 1~8CLV`yhE@W]8X?T(nqRgLXI-[(.DtxX6spU850;a3+wk$4{U?$`/uE*wPd^_' );
define( 'NONCE_KEY', 'Y_M?-n,V()ztL_{du?#2&TKl1?{~N]{eZWvi`>G5ij{>l1+t~TDa2L/&TSD4A<M(' );
define( 'AUTH_SALT', 'Dr2V.]I:[Oq|P<c<J[$P3kIYBY@h89#:%0opD}:aw*|PIKgl]PsTu%xF:-5Z9R?C' );
define( 'SECURE_AUTH_SALT', 'rxsce+7*iS@>OTpZI#h3D:mRQ6cEf)FcyU@L<ND{=%R>CKlUNG4I%ny_goNy!KdM' );
define( 'LOGGED_IN_SALT', 'q9h}.f6}U,$/_Yb3mU6ao(s]84+9^Rf(:dX7#J)Ft32`LWf6AJg^x8XNG_0E5@X$' );
define( 'NONCE_SALT', 'yKM-mT:F{T-ZQ.mXsu[jTJNMD.M|<6y|_)CkfxTr?QzstfY2/d8rT}Q?nEiMfyBA' );
define( 'WP_CACHE_KEY_SALT', '8}u)8MjJ LgUl_j//e[OD4b$mig3JMEJ&u-ho=lr++3ppU99W:i])jKwj[C.Z6c@' );
/**#@-*/
/**
* 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';