config.inc.php.dist 306 B

123456789101112
  1. <?php
  2. class Config {
  3. public static $dbHost = "127.0.0.1";
  4. public static $dbUser = "root";
  5. public static $dbPass = "root";
  6. public static $dbName = "moecms";
  7. public static $basedir = ""; // without trailing slash
  8. public static $abspath = "/var/www/cms"; // without trailing slash
  9. }
  10. ?>