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.

14 lines
402 B

  1. <?php
  2. class Config {
  3. public static $base_url = 'https://example.com';
  4. public static $dbHost = '127.0.0.1';
  5. public static $dbName = 'switchboard';
  6. public static $dbUsername = 'switchboard';
  7. public static $dbPassword = '';
  8. public static $beanstalkServer = '127.0.0.1';
  9. public static $beanstalkPort = 11300;
  10. public static $defaultAuthorizationEndpoint = 'https://indieauth.com/auth';
  11. }