-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.php.example
More file actions
41 lines (32 loc) · 886 Bytes
/
config.php.example
File metadata and controls
41 lines (32 loc) · 886 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
35
36
37
38
39
40
41
<?php
/** KontrolVM By KuJoe (https://github.com/KuJoe/kontrolvm) **/
//
// !! Important settings
//
// SQLite3 Database File
$db_file_path = "../kontrolvm.db";
// SSH Settings
$sshusernow = "kontrolvm";
$sshkeypriv = "../kontrolvm";
$sshkeypub = "../kontrolvm.pub";
// Encrypt/Decrypt Key
$cryptkey = "a-random-string";
//
// Optional settings
//
// Background Node Updates - If you want the node data to automatically update every hour set this to true, if you want to manually refresh the nodes only set this to false.
$bgupdate = true;
// SMTP Settings
//$smtp_server = "localhost";
//$smtp_port = "587";
//$smtp_user = "noreply@example.com";
//$smtp_password = "password";
//$smtp_tls = true;
//$smtp_sender = "noreply@example.com";
// Cloudflare Turnstile Keys (https://developers.cloudflare.com/turnstile/)
//$sitekey = "";
//$secretkey = "";
//
// End of settings
//
?>