kontrolvm/config.php
KuJoe e0bc51ed10 Initial upload for release 0.1
Uploading the code in its entirety, basic testing completed but still more work and code clean-up needed.
2025-02-10 17:36:04 -05:00

30 lines
No EOL
494 B
PHP

<?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
//
// Cloudflare Turnstile Keys (https://developers.cloudflare.com/turnstile/)
//$sitekey = "";
//$secretkey = "";
//
// End of settings
//
?>