You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
516 B

  1. <?php
  2. class Config {
  3. public static $base = 'http://telegraph.dev/';
  4. public static $ssl = false;
  5. public static $secretKey = '000000000000000000000000000000000000000000000';
  6. public static $clientID = 'http://telegraph.dev/';
  7. public static $defaultAuthorizationEndpoint = 'https://indieauth.com/auth';
  8. public static $errbitKey = '';
  9. public static $errbitHost = '';
  10. public static $db = [
  11. 'host' => '127.0.0.1',
  12. 'database' => 'telegraph',
  13. 'username' => 'root',
  14. 'password' => ''
  15. ];
  16. }