forked from studio24/wordpress-multi-env-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wp-config.staging.php
39 lines (30 loc) · 876 Bytes
/
wp-config.staging.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/**
* Staging environment config settings
*
* Enter any WordPress config settings that are specific to this environment
* in this file.
*
* @package Studio 24 WordPress Multi-Environment Config
* @version 2.0.0
* @author Studio 24 Ltd <[email protected]>
*/
// ** MySQL settings - You can get this info from your web host ** //
/** MySQL hostname */
define('DB_HOST', '');
/** The name of the database for WordPress */
define('DB_NAME', '');
/** MySQL database username */
define('DB_USER', '');
/** MySQL database password - set in wp-config.local.php */
/**
* For developers: WordPress debugging mode.
*
* @link https://codex.wordpress.org/Debugging_in_WordPress
*/
define('WP_DEBUG', false);
// Recommended WP config settings, uncomment to use these
/**
* Disable theme/plugin upload.
*/
//define( 'DISALLOW_FILE_MODS', true );