· 7 years ago · Mar 24, 2018, 08:10 PM
1<?php
2/**
3 * The base configurations of the WordPress.
4 *
5 * This file has the following configurations: MySQL settings, Table Prefix,
6 * Secret Keys, WordPress Language, and ABSPATH. You can find more information
7 * by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
8 * wp-config.php} Codex page. You can get the MySQL settings from your web host.
9 *
10 * This file is used by the wp-config.php creation script during the
11 * installation. You don't have to use the web site, you can just copy this file
12 * to "wp-config.php" and fill in the values.
13 *
14 * @package WordPress
15 */
16
17// ** MySQL settings - You can get this info from your web host ** //
18/** The name of the database for WordPress */
19define('DB_NAME', 'evworkplace_prod');
20
21
22/** MySQL database username */
23define('DB_USER', 'webuser');
24
25
26/** MySQL database password */
27define('DB_PASSWORD', 'Subway888!');
28
29
30/** MySQL hostname */
31define('DB_HOST', 'ip-97-74-6-106');
32
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', '@^Vvv0DouDQH:-gy.|6#$^[c&h@gclf&QO|z/RJ:<D<LizSN5B|x@^V+}#NpL,Ik');
50
51define('SECURE_AUTH_KEY', '4A`+}WzXnE~u^x2o0b@#fMc6}-WT]%x;nzK/}<q xu2()C7`pG*|7n-@`.^-LQR`');
52
53define('LOGGED_IN_KEY', 'Urp-NqJc9VGbkw+*@1NQ*EDD%Ba{;2&&^Ewyg&XtFWi#:/_!cMY[f4-i3hEL_Rj.');
54
55define('NONCE_KEY', 'dfMVXKU3xosdC*%{C?I,dDWj+/`RTd/Em-=C`)VJ/DIJy)RrS&!&]DkyzbeOHKQ(');
56
57define('AUTH_SALT', '@YIf?g#8R<k&AE8kpz<nk!q[/Q~4IQUDxh:|%yqm!o{Bw^Ru|<$QG4U2gI42(I[Y');
58
59define('SECURE_AUTH_SALT', 'DtO|k5vo-NF)8XrTL{1cbs65~>^.39MHV69W#4USlB#&%u-9zP;Zdn7Qg2MrC#Sp');
60
61define('LOGGED_IN_SALT', 'Dt}F,EpVLs.)9Qv_5L-6Z*4- -UP-c2,6dsS{2h##5pFGaifL;kRsuAr!>j?73?T');
62
63define('NONCE_SALT', '*+J-rK-d#BdEJK>VTl-GoJN0UqZUW1@w,4:T^Gwu;xJn;]:N_7w8_oXn_^S:$V8Q');
64
65
66/**#@-*/
67
68/**
69 * WordPress Database Table prefix.
70 *
71 * You can have multiple installations in one database if you give each a unique
72 * prefix. Only numbers, letters, and underscores please!
73 */
74$table_prefix = 'wp_';
75
76
77/**
78 * WordPress Localized Language, defaults to English.
79 *
80 * Change this to localize WordPress. A corresponding MO file for the chosen
81 * language must be installed to wp-content/languages. For example, install
82 * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
83 * language support.
84 */
85define('WPLANG', '');
86
87/**
88 * For developers: WordPress debugging mode.
89 *
90 * Change this to true to enable the display of notices during development.
91 * It is strongly recommended that plugin and theme developers use WP_DEBUG
92 * in their development environments.
93 */
94define('WP_DEBUG', false);
95
96/* That's all, stop editing! Happy blogging. */
97
98/** Absolute path to the WordPress directory. */
99if ( !defined('ABSPATH') )
100 define('ABSPATH', dirname(__FILE__) . '/');
101
102/** Sets up WordPress vars and included files. */
103require_once(ABSPATH . 'wp-settings.php');