botsArena/src/config.php.empty

17 lines
370 B
Plaintext
Raw Normal View History

2015-11-28 19:22:48 +01:00
<?php
2015-12-04 15:54:18 +01:00
define("BASEURL", "http://botsarena.tinad.fr/");
2015-11-28 19:22:48 +01:00
$mysqlParams=array(
'host' => 'localhost',
'user' => '',
'pass' => '',
'database'=>''
);
2015-12-03 22:21:33 +01:00
$smtpParams=array(
//exemple for gmail
'auth' => true,
'secure' => 'tls',
'host' => 'smtp.gmail.com',
'port' => 587,
'username' => "email@gmail.com",
'pass' => ""
);