Upload files to "/"

This commit is contained in:
2026-06-12 17:50:39 +00:00
parent 77051fb0c5
commit 11508f5213
5 changed files with 82 additions and 9 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
// cek_env.php - hapus setelah deploy selesai
header('Content-Type: text/plain');
echo "DB_HOST=" . (getenv('DB_HOST') ?: '(kosong)') . "\n";
echo "DB_PORT=" . (getenv('DB_PORT') ?: '(kosong)') . "\n";
echo "DB_NAME=" . (getenv('DB_NAME') ?: '(kosong)') . "\n";
echo "DB_USER=" . (getenv('DB_USER') ?: '(kosong)') . "\n";
echo "DB_PASS=" . (getenv('DB_PASS') ? 'TERISI' : '(kosong)') . "\n";
?>