mirror of
https://github.com/KuJoe/kontrolvm.git
synced 2025-04-21 12:33:41 +00:00
41 lines
No EOL
886 B
Text
41 lines
No EOL
886 B
Text
<?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
|
|
//
|
|
?> |