mirror of
https://github.com/KuJoe/kontrolvm.git
synced 2025-04-21 12:33:41 +00:00

Uploading the code in its entirety, basic testing completed but still more work and code clean-up needed.
30 lines
No EOL
494 B
PHP
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
|
|
//
|
|
?>
|