-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwp-config.php
More file actions
44 lines (34 loc) · 1.81 KB
/
wp-config.php
File metadata and controls
44 lines (34 loc) · 1.81 KB
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
40
41
42
43
44
<?php
/**
* #ddev-generated: Automatically generated WordPress settings file.
* ddev manages this file and may delete or overwrite the file unless this comment is removed.
* It is recommended that you leave this file alone.
*
* @package ddevapp
*/
/** Database charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8' );
/** The database collate type. Don't change this if in doubt. */
define( 'DB_COLLATE', '' );
/** Authentication Unique Keys and Salts. */
define( 'AUTH_KEY', 'jqNavTTMaxqYCsnmOFwPdKcdrkyIQbtzqwYKSAAmuvRcwuoDRGTwnQmwndGYQixw' );
define( 'SECURE_AUTH_KEY', 'NNfjjGgbhKrUOOvwIGvjuQyskrrQRfDwfuUIqPxAOicwEcMDbcDrqEaBxdxxBbMy' );
define( 'LOGGED_IN_KEY', 'WsOyiLFgHrKbwEYbGzrWYKSHMUJVGsMIBAUmaUBayxnnhsUjhkHsbCrmlgqcKPhp' );
define( 'NONCE_KEY', 'CXbIbTRPCswYspERtWKyuSUDEyvNaVtiZNmSCxQrfstylGeZjeAVWOFWymMikbnz' );
define( 'AUTH_SALT', 'iWSBtHWYfITQcpaOfcSgJZknaUxAUZDdYPSjvOcRbxJaVbEvMWNmxjYZeKOeIGtq' );
define( 'SECURE_AUTH_SALT', 'NwhKqmWVcuBeWsMbgfXcwLfuCSaXZEORmxvAiUkOVeckeZkZaaEuLLkiOYrJCmbD' );
define( 'LOGGED_IN_SALT', 'GNzykhFnoxrpBiCeHORCWPHwqwanrUYruQGRskSHnUUhUCgMCTjLcLkvuJFzshfW' );
define( 'NONCE_SALT', 'MWZDQbtNrjwYrzXsIXfgKoLYfoQXNWkXRIeSQElHttYdMiItGMWNQoYWNULTRIOO' );
/* Add any custom values between this line and the "stop editing" line. */
/* That's all, stop editing! Happy publishing. */
/** Absolute path to the WordPress directory. */
defined( 'ABSPATH' ) || define( 'ABSPATH', dirname( __FILE__ ) . '/' );
// Include for settings managed by ddev.
$ddev_settings = __DIR__ . '/wp-config-ddev.php';
if ( ! defined( 'DB_USER' ) && getenv( 'IS_DDEV_PROJECT' ) == 'true' && is_readable( $ddev_settings ) ) {
require_once( $ddev_settings );
}
/** Include wp-settings.php */
if ( file_exists( ABSPATH . '/wp-settings.php' ) ) {
require_once ABSPATH . '/wp-settings.php';
}