config.php 338 B

12345678910111213
  1. <?php
  2. // PackIt – database configuration
  3. // Place this file ONE directory ABOVE the web-root (e.g. /var/www/config.php)
  4. // so it is never served directly by the web server.
  5. // sample configuration
  6. $host = 'localhost';
  7. $dbname = 'packit';
  8. $username = 'packer';
  9. $password = 'DEbWX9AHkzAgaNdLC0Qj605grG';
  10. $charset = 'utf8mb4';
  11. ?>