CMS Project Sync
This commit is contained in:
@@ -0,0 +1,102 @@
|
||||
<?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', 'wordpress_project' );
|
||||
|
||||
/** Database username */
|
||||
define( 'DB_USER', 'root' );
|
||||
|
||||
/** Database password */
|
||||
define( 'DB_PASSWORD', '' );
|
||||
|
||||
/** Database hostname */
|
||||
define( 'DB_HOST', 'localhost' );
|
||||
|
||||
/** 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', ']? VV7DSPHqW.0]_5g_7ylP,( a.ns &0oT}W1x1`l+?]su!8|3p[f,K**!*]jx)' );
|
||||
define( 'SECURE_AUTH_KEY', '2scV9Q0LTc-Ng(M_`Jnz[K15jlpC&_bZKNf`?^2%:QK7?6h7<X-;Ox~wi~B3R^.0' );
|
||||
define( 'LOGGED_IN_KEY', 'QLJ?(RQKFeH;8kUS=vung$?d4mo6EOo`Utnp>rk.I6s6=l`xsb q;1Zvx@z~Bc(C' );
|
||||
define( 'NONCE_KEY', 'n>3&8Af_ag%;`F&vAA10KD<}}k(2eABG/O,nC^/fh;#9Dic4rktISewi,qcf:4]0' );
|
||||
define( 'AUTH_SALT', '!5wK=VdK0r9)3,GlL(E(;}}{&B~qBGA-Vc` [tbM^n[Pt{YQUFY3~od;;iKe1#|x' );
|
||||
define( 'SECURE_AUTH_SALT', 'Z>(8?r5=6:ngT^Y!CVNfr5a[l5[9qIWN1x6ZBSWk{Fmbm[#r-t$YYMo_>aRjD&I=' );
|
||||
define( 'LOGGED_IN_SALT', 'b|0!_:>Gof])JBkxh)mcO.{aD*C.FG-l`a.rB|U&{U[bD_pJ+)c >o7G8O_>/-So' );
|
||||
define( 'NONCE_SALT', '5K$4LI[u8<;~J?p<)GU+BFl5z3=X8YJ7@N0,T+c$_Qx`Sj50KKZc6o7Y5pV5U:EY' );
|
||||
|
||||
/**#@-*/
|
||||
|
||||
/**
|
||||
* 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. */
|
||||
|
||||
|
||||
|
||||
/* 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';
|
||||
Reference in New Issue
Block a user