summaryrefslogtreecommitdiff
path: root/etc/global_config.php.sample
blob: 71c9eeb1fb95f76d50d1b2ef676375a4a43c925f (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
36
37
38
39
40
41
42
<?php
# ----
# Copyright (C) 2013-2020 - Reevo Project (http://reevo.org)
# License: Affero GPL version 3 - http://www.gnu.org/licenses/agpl.html
# ----

## ES: Defina el usuario y contraseña para acceder a las DBs
## EN: Define user and password to access DBs

$REEVO_URL = "reevo.test";

$REEVO_DB_USER = "";
$REEVO_DB_PASS = "";

$REEVO_DB_CRM		= "reevo_crm";
$REEVO_DB_WIKI 		= "reevo_wiki";

$REEVO_WIKI_API_USER = "";
$REEVO_WIKI_API_PASS = "";

## Variables de MediaWiki que deben ser secretas
$wgSitename = "*REEVO TEST";
$wgServer = "http://$REEVO_URL";
$wgSecretKey = "";
$wgAuthenticationTokenVersion = "1";
$wgUpgradeKey = "";
$wgPageFormsGoogleMapsKey = "";


####### DEBUG
if( strpos( $REEVO_URL, 'test' ) !== false) {
	$wgShowExceptionDetails = true;
	$wgDebugComments = true;
	$wgDebugLogFile = "../../log/wiki/mediawiki.log";
	$wgShowSQLErrors = true;
	$wgDebugDumpSql  = true;
	$wgShowExceptionDetails= true;
	$wgShowDBErrorBacktrace = true;
}


?>