-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwp-config.php
63 lines (44 loc) · 1.75 KB
/
wp-config.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
// The name of the database for WordPress
define( 'DB_NAME', '' );
// MySQL database username
define( 'DB_USER', '' );
// MySQL database password
define( 'DB_PASSWORD', '' );
// MySQL hostname
define( 'DB_HOST', 'localhost' );
// 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', '' );
define( 'AUTH_KEY', '' );
define( 'SECURE_AUTH_KEY', '' );
define( 'LOGGED_IN_KEY', '' );
define( 'NONCE_KEY', '' );
define( 'AUTH_SALT', '' );
define( 'SECURE_AUTH_SALT', '' );
define( 'LOGGED_IN_SALT', '' );
define( 'NONCE_SALT', '' );
$table_prefix = 'wp_';
define( 'WPLANG', '' );
define( 'WP_DEBUG', false );
define( 'CONCATENATE_SCRIPTS', true );
define( 'SCRIPT_DEBUG', false );
// define( 'WP_ALLOW_MULTISITE', true );
// define( 'MULTISITE', true );
// define( 'SUBDOMAIN_INSTALL', true );
// define( 'DOMAIN_CURRENT_SITE', 'domain.com' );
// define( 'PATH_CURRENT_SITE', '/' );
// define( 'SITE_ID_CURRENT_SITE', 1 );
// define( 'BLOG_ID_CURRENT_SITE', 1 );
define( 'WP_AUTO_UPDATE_CORE', false );
// The content directory is symlinked, so let's work out the path
$WPContentDir = readlink( dirname( dirname( __FILE__ ) ) . '/current' ) . '/content';
define( 'WP_CONTENT_DIR', $WPContentDir );
// This is forced https, you may want to change this... (or use a filter)
define( 'WP_CONTENT_URL', 'https://' . $_SERVER['HTTP_HOST'] . '/content' );
// Absolute path to the WordPress directory.
if ( !defined( 'ABSPATH' ) )
define( 'ABSPATH', dirname( __FILE__ ) . '/wp/' );
// Sets up WordPress vars and included files.
require_once( ABSPATH . 'wp-settings.php' );