· 7 years ago · Dec 03, 2018, 11:28 PM
1<?php
2/*Fl4g: securinets{Y0u_f0uNd_M3}*/
3/**
4 * The base configuration for WordPress
5 *
6 * The wp-config.php creation script uses this file during the
7 * installation. You don't have to use the web site, you can
8 * copy this file to "wp-config.php" and fill in the values.
9 *
10 * This file contains the following configurations:
11 *
12 * * MySQL settings
13 * * Secret keys
14 * * Database table prefix
15 * * ABSPATH
16 *
17 * @link https://codex.wordpress.org/Editing_wp-config.php
18 *
19 * @package WordPress
20 */
21
22// ** MySQL settings - You can get this info from your web host ** //
23/** The name of the database for WordPress */
24define('DB_NAME', 'wordpress');
25
26/** MySQL database username */
27define('DB_USER', 'wordpress');
28
29/** MySQL database password */
30define('DB_PASSWORD', 'wordpress');
31
32/** MySQL hostname */
33define('DB_HOST', 'db:3306');
34
35/** Database Charset to use in creating database tables. */
36define('DB_CHARSET', 'utf8');
37
38/** The Database Collate type. Don't change this if in doubt. */
39define('DB_COLLATE', '');
40
41/**#@+
42 * Authentication Unique Keys and Salts.
43 *
44 * Change these to different unique phrases!
45 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
46 * 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.
47 *
48 * @since 2.6.0
49 */
50define('AUTH_KEY', '79f5befe15bb31288e3258577b7b8fafacd32009');
51define('SECURE_AUTH_KEY', '38c44c984a570d6a4786b71fa21e993266ff071a');
52define('LOGGED_IN_KEY', '92e9237940884f1a3933b9013e33d2aba9c17381');
53define('NONCE_KEY', '123dbc011d383c0d4e994145dbd2019f22388432');
54define('AUTH_SALT', '439b282e80c36c30e1f8911f57ea417f4a5608d6');
55define('SECURE_AUTH_SALT', 'c679921d99000c62d18ee8934d298e72db512589');
56define('LOGGED_IN_SALT', 'acb2427ea8e1c11da573f9f6826d978d64ee7a8d');
57define('NONCE_SALT', '5e973cbaebc35f171437c9d62a9982ba8eb2b7ca');
58
59/**#@-*/
60
61/**
62 * WordPress Database Table prefix.
63 *
64 * You can have multiple installations in one database if you give each
65 * a unique prefix. Only numbers, letters, and underscores please!
66 */
67$table_prefix = 'wp_';
68
69/**
70 * For developers: WordPress debugging mode.
71 *
72 * Change this to true to enable the display of notices during development.
73 * It is strongly recommended that plugin and theme developers use WP_DEBUG
74 * in their development environments.
75 *
76 * For information on other constants that can be used for debugging,
77 * visit the Codex.
78 *
79 * @link https://codex.wordpress.org/Debugging_in_WordPress
80 */
81define('WP_DEBUG', false);
82
83// If we're behind a proxy server and using HTTPS, we need to alert Wordpress of that fact
84// see also http://codex.wordpress.org/Administration_Over_SSL#Using_a_Reverse_Proxy
85if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') {
86 $_SERVER['HTTPS'] = 'on';
87}
88
89/* That's all, stop editing! Happy blogging. */
90
91/** Absolute path to the WordPress directory. */
92if ( !defined('ABSPATH') )
93 define('ABSPATH', dirname(__FILE__) . '/');
94
95/** Sets up WordPress vars and included files. */
96require_once(ABSPATH . 'wp-settings.php');