forked from KeyAuth/KeyAuth-Source-Code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcredentials.example.php
More file actions
34 lines (20 loc) · 890 Bytes
/
Copy pathcredentials.example.php
File metadata and controls
34 lines (20 loc) · 890 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
32
33
34
<?php
/*
All sensitive credentials stored here.
NOTE: change this file name from credentials.example.php to credentials.php
*/
error_reporting(0);
$databaseHost = "localhost";
$databaseUsername = "root";
$databasePassword = "";
$databaseName = "main";
$mysqlRequireSSL = false; // in case the MySQL server requires SSL
$logwebhook = ""; // discord webhook which receives login logs and keys created
$adminwebhook = ""; // discord webhook which receives admin actions
$redisServers = []; // URLs to purge redis keys from each server (used on live KeyAuth website only)
$redisPass = "";
$keyauthStatsToken = ""; // discord bot token for KeyAuth Stats
$webhookun = "KeyAuth Logs"; // webhook username
$adminwebhookun = "KeyAuth Admin Logs"; // admin webhook's username
$awsAccessKey = ""; // used for AWS SES to send emails
$awsSecretKey = ""; // used for AWS SES to send emails