· 4 years ago · Mar 16, 2021, 09:38 AM
1<?php
2/**
3 * The base configuration for WordPress
4 *
5 * The wp-config.php creation script uses this file during the
6 * installation. You don't have to use the web site, you can
7 * copy this file to "wp-config.php" and fill in the values.
8 *
9 * This file contains the following configurations:
10 *
11 * * MySQL settings
12 * * Secret keys
13 * * Database table prefix
14 * * ABSPATH
15 *
16 * @link https://codex.wordpress.org/Editing_wp-config.php
17 *
18 * @package WordPress
19 */
20
21// ** MySQL settings - You can get this info from your web host ** //
22/** The name of the database for WordPress */
23define( 'DB_NAME', 'local' );
24
25/** MySQL database username */
26define( 'DB_USER', 'root' );
27
28/** MySQL database password */
29define( 'DB_PASSWORD', 'root' );
30
31/** MySQL hostname */
32define( 'DB_HOST', 'localhost' );
33
34/** Database Charset to use in creating database tables. */
35define( 'DB_CHARSET', 'utf8' );
36
37/** The Database Collate type. Don't change this if in doubt. */
38define( 'DB_COLLATE', '' );
39
40/**
41 * Authentication Unique Keys and Salts.
42 *
43 * Change these to different unique phrases!
44 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
45 * 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.
46 *
47 * @since 2.6.0
48 */
49define('AUTH_KEY', 'bAdpsXHIGmQqR42I6U2IAZp80SkddqIbgwxAXD2l6Mbu1bGiR1MlRalgUOBPmoMqF9cmiYYf8taxbEHCFpxoJiryXw==');
50define('SECURE_AUTH_KEY', 'zHLAAAWtGfDoAxPsGIcrBLdS33BN7dLBfkBavpFTZojydbvR5PmZudrTygS0bRUS/IJ2LSy6s/LyNqMT157v7rdGSA==');
51define('LOGGED_IN_KEY', 'dS2FXQFFFFPJh+VBj8d6SU5gDkCfmhP9SqFzFS+tYJJ2qGqskeUVY+779oLz4ztkksa4oqPKH4LlscUDoRQ116aOiA==');
52define('NONCE_KEY', '6hu4h9fw1rDDDDXUut7dFSbV3H8p+lhUbeftZZ0dsGI9zja7kVtI4R+CMDyA1jhsP5RN8r5iyKRcP8TK14KMypUicw==');
53define('AUTH_SALT', 'Reip0JFgKwjmVWDDDDDc1IAmQtqMmVBl30DpzduUUPq3BgKZii5M3amJsg9YENQy555AoLM5Sw4TZpX0Hpnl/6QldA==');
54define('SECURE_AUTH_SALT', 'HQymHZHIlfH/PhbqcfFFFFnkQEnJVfTTEYJepHR/L4G3M/EXWAk3PDLrd7W7tQUtGFZ/XUmymd6JMIOc1kLbctrxTA==');
55define('LOGGED_IN_SALT', 'f9LYphB5QBEBMEzxHbGqZYFFFdjV2+VqLUne2PTzHzIN2tkY1iqeg/KDkLzhYj7oAalt37FeP8Fmrxk8MJDOCzA09g==');
56define('NONCE_SALT', 'i1AV6323RGDwjtuJabTCmIAAahdd/oJMhzkSZV7m54JV/SUgmBduVgiWbiYvjJSc4a1MGC2roaI60AZko1zD+k832w==');
57
58/**
59 * WordPress Database Table prefix.
60 *
61 * You can have multiple installations in one database if you give each
62 * a unique prefix. Only numbers, letters, and underscores please!
63 */
64$table_prefix = 'wp_';
65
66
67
68
69/* That's all, stop editing! Happy publishing. */
70
71/** Absolute path to the WordPress directory. */
72if ( ! defined( 'ABSPATH' ) ) {
73 define( 'ABSPATH', dirname( __FILE__ ) . '/' );
74}
75
76/** Sets up WordPress vars and included files. */
77require_once ABSPATH . 'wp-settings.php';