summaryrefslogtreecommitdiff
path: root/www/crm/wp-config.Reevo.php
blob: f86e69d0b19e89c1fb8a48a9c903ed7ee1a244f1 (plain)
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
<?php
# ----
# Copyright (C) 2013-2020 - Reevo Project (http://reevo.org)
# License: Affero GPL version 3 - http://www.gnu.org/licenses/agpl.html
# ----

include(__DIR__ . '/../../etc/global_config.php');


define( 'DB_NAME', $REEVO_DB_WP );
define( 'DB_USER', $REEVO_DB_USER );
define( 'DB_PASSWORD', $REEVO_DB_PASS );
define( 'DB_HOST', 'localhost' );

define( 'DB_CHARSET', 'utf8mb4' );
define( 'DB_COLLATE', '' );

define( 'AUTH_KEY', $WP_REEVO_AUTH_KEY );
define( 'SECURE_AUTH_KEY', $WP_REEVO_SECURE_AUTH_KEY );
define( 'LOGGED_IN_KEY', $WP_REEVO_LOGGED_IN_KEY );
define( 'NONCE_KEY', $WP_REEVO_NONCE_KEY );
define( 'AUTH_SALT', $WP_REEVO_AUTH_SALT );
define( 'SECURE_AUTH_SALT', $WP_REEVO_SECURE_AUTH_SALT );
define( 'LOGGED_IN_SALT', $WP_REEVO_LOGGED_IN_SALT );
define( 'NONCE_SALT', $WP_REEVO_NONCE_SALT );

$table_prefix = 'wp_';

define( 'WP_DEBUG', false );

if ( ! defined( 'ABSPATH' ) ) {
	define( 'ABSPATH', dirname( __FILE__ ) . '/' );
}

require_once( ABSPATH . 'wp-settings.php' );