Make WordPress Core

Ticket #51474: wp-config.php

File wp-config.php, 3.6 KB (added by gevcen, 5 years ago)
Line 
1<?php
2define( 'WP_CACHE', true ); // Added by WP Rocket
3
4
5/**
6 * The base configuration for WordPress
7 *
8 * The wp-config.php creation script uses this file during the
9 * installation. You don't have to use the web site, you can
10 * copy this file to "wp-config.php" and fill in the values.
11 *
12 * This file contains the following configurations:
13 *
14 * * MySQL settings
15 * * Secret keys
16 * * Database table prefix
17 * * ABSPATH
18 *
19 * @link https://codex.wordpress.org/Editing_wp-config.php
20 *
21 * @package WordPress
22 */
23
24// ** MySQL settings - You can get this info from your web host ** //
25/** The name of the database for WordPress */
26define('DB_NAME', 'HIDDEN_NAME');
27
28/** MySQL database username */
29define('DB_USER', 'HIDDEN_USERNAME');
30
31/** MySQL database password */
32define( 'DB_PASSWORD', 'HIDDEN_PASSWORD' );
33
34/** MySQL hostname */
35define('DB_HOST', 'HIDDEN_IP');
36
37/** Database Charset to use in creating database tables. */
38define('DB_CHARSET', 'HIDDEN_CHARSET');
39
40/** The Database Collate type. Don't change this if in doubt. */
41define('DB_COLLATE', '');
42/**
43@ini_set( 'upload_max_filesize' , '1G' );
44@ini_set( 'post_max_size', '1G');
45**/
46/**#@+
47 * Authentication Unique Keys and Salts.
48 *
49 * Change these to different unique phrases!
50 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
51 * 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.
52 *
53 * @since 2.6.0
54 */
55define('AUTH_KEY',         '..%XlZTodM#R0=<%nBk3qnI+<^K&/r99(8$4K?[5U06R6|J0_/.c8o}]$a;. bf_');
56define('SECURE_AUTH_KEY',  'g*<KtOa5_li!nYr(hx3gX|M$/XW;7Y&AAz&8&e0kMx2?U&d|<xyt.WCU`E8-JXZ]');
57define('LOGGED_IN_KEY',    'i!$D4ZCk>h[@VxH(nzit$4+B3rGYuT]ty0o#apw`qyTB|_tQ?1h?Ez.-p3)RJT@-');
58define('NONCE_KEY',        'wAFH ;;,|/uBD[~8JNIo@BX|-C|*/[d>5,p:%KJ5dMg&sT Ns-Qk={a6/6|p<Z-,');
59define('AUTH_SALT',        ':o_wcF-ZQa1d 718&O|2;(V-1]#qDu)+Z7ze>5fDK_X}#7)]w#vjf=<C-[T=k.B1');
60define('SECURE_AUTH_SALT', 'U=]8oE]uW3^v&5fv4IQG4LGV8,Ta&K3?PKtqK0CRkKBhp&iA{)62{sr:^@FHH@R^');
61define('LOGGED_IN_SALT',   'qb5_CrL]y> <~,Vk#2IM9G-O2NWYqVQ_&=p]H!uIa#(3`_kK*70XFzb2:`J8Kv-&');
62define('NONCE_SALT',       '~`,j.(9N?<M_nD*0oY4#KhlIJLg!?=kR-`k;N8$(?Y0Sa1S;:NgFmpgvr2_YWc_1');
63
64/**#@-*/
65define( 'WP_MEMORY_LIMIT', '1G' );
66/**
67 * WordPress Database Table prefix.
68 *
69 * You can have multiple installations in one database if you give each
70 * a unique prefix. Only numbers, letters, and underscores please!
71 */
72$table_prefix  = 'wp_';
73
74/**
75 * For developers: WordPress debugging mode.
76 *
77 * Change this to true to enable the display of notices during development.
78 * It is strongly recommended that plugin and theme developers use WP_DEBUG
79 * in their development environments.
80 *
81 * For information on other constants that can be used for debugging,
82 * visit the Codex.
83 *
84 * @link https://codex.wordpress.org/Debugging_in_WordPress
85 */
86define( 'WP_DEBUG', false );
87define( 'WP_DEBUG_LOG', '/home/customer/www/HIDDEN_DOMAIN/private_logs/debug.log' );
88define( 'WP_DEBUG_DISPLAY', false );
89
90 // Added by WP Rocket
91define('DISABLE_WP_CRON', true);
92
93/* That's all, stop editing! Happy blogging. */
94
95/** Absolute path to the WordPress directory. */
96if ( !defined('ABSPATH') )
97        define('ABSPATH', dirname(__FILE__) . '/');
98require_once(ABSPATH . 'disable_wp_cron.php');
99
100/** Sets up WordPress vars and included files. */
101require_once(ABSPATH . 'wp-settings.php');
102@include_once('/var/lib/sec/wp-settings.php'); // Added by SiteGround WordPress management system