kontrolvm/config.php.example
KuJoe e78f3d4cc0 Setting up automatic updates
Laying the groundwork for issue #5
2025-03-04 19:09:22 -05:00

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
//
?>