File: /home/demosite/public_html/wp-config.php
<?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', 'demosite_wordpress' );
/** Database username */
define( 'DB_USER', 'demosite' );
/** Database password */
define( 'DB_PASSWORD', 'DF6wiXKNHvz1rzZ' );
/** 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', '3-: I;J`6.U?c*kg!nWV`<xYWC}9;:e@ N5wPvDq5z:~&dKO=B+FOG,nF4R!TUYO' );
define( 'SECURE_AUTH_KEY', 'NS8nG<sikD#L?Zj$VSEJ/e/sta)g7S9UL/xoVG2V,Mu:tJx[~4RXkL#S>e`|b+A2' );
define( 'LOGGED_IN_KEY', 'Um,l5]gCrPqKq@Pib0Yp_OO@}Ew*<~Bir=!50w%`}hx;;^W>BDg[E*<b}?4(3fh:' );
define( 'NONCE_KEY', '?MxgJzF^3ce0aO=3&Ab n]?jmQNTi 8pJmX.T;I?A_?JKAsHL6cozm0GEjCB%q%R' );
define( 'AUTH_SALT', ';nfXLt7I~RTan.+fv`mBdZ+7a-6YP(<Js()Q=Nu(fi!~dL5$xk~~*77~cHu_;2VO' );
define( 'SECURE_AUTH_SALT', 'o6%=<IK,)N!C!GY{F{Iuls}0C5lTwtF`rvfH^T.z1xns:zF0byX2>wno26=E[kf;' );
define( 'LOGGED_IN_SALT', 'v}*aQ) A-`F+z2G5Fixk5PX9K7iJo=+;D&_sy}nc8q/Z%3DXdVF;=58ZyDy3pIOB' );
define( 'NONCE_SALT', '=[~g/Oy8EyT%1^tTHWqw,_$ePL}u(yf*b]H1x{/xYi)!!]Fn]98C`L2bOTGQ_>3M' );
define( 'WP_CACHE_KEY_SALT', 'J ~f~N&<~~]x]*=Hb|P%MD*D__sGEC>4yneJc_?}cJqD*X&aoj MTWm9.w=2.S&:' );
/**#@-*/
/**
* 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__ . '/' );
}
define( 'WP_MEMORY_LIMIT', '256M' );
/** Sets up WordPress vars and included files. */
require_once ABSPATH . 'wp-settings.php';