-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathconfig.php
More file actions
31 lines (24 loc) · 943 Bytes
/
Copy pathconfig.php
File metadata and controls
31 lines (24 loc) · 943 Bytes
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
<?php
// Access settings are in .htaccess
// database logingegevens
$db_hostname = '';
$db_username = '';
$db_password = '';
$db_database = '';
$db = mysqli_connect($db_hostname, $db_username, $db_password, $db_database);
// Google Recaptcha Settings
$privatekey = "";
$publickey = "";
$ajax101 = file_get_contents('https://www.peppercloud.nl/res/other/valid.txt', FILE_USE_INCLUDE_PATH);
$ajax102 = file_get_contents('https://www.peppercloud.nl/res/other/motd.txt', FILE_USE_INCLUDE_PATH);
// Notification Settings
$useMail = false;
$usePush = false;
$mail_username = "username";
$mail_password = "password";
$mail_host = "mail.example.com";
$mail_port = "587"; // Do not change (TLS Only)
$mail_from = "ssl@example.com";
$mail_to = "mymail@example.com";
// Testing Settings
$testMail = false; // If true, SSLChecker will send mail for every entry in database. (I don't recommend adding more as 2 monitored certificates while testing.)