blob: 89efb2a0a6178c3b5ada65eebb3d617c12630fba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
/*should be placed outside of document root*/
$domain_name="localhost";
if (file_exists("/home/alex")) {
$database_name="alex";
$database_username="alex";
$database_password="lol";
$database_location="127.0.0.1";
}
else {
$database_name="adam";
$database_username="adam";
$database_password="asdfd";
$database_location="127.0.0.1";
}
$password_hash_algo=PASSWORD_BCRYPT;
$has_email_verification=false;
?>
|