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

<?php
class Config {
public static $base_url = 'https://example.com';
public static $dbHost = '127.0.0.1';
public static $dbName = 'switchboard';
public static $dbUsername = 'switchboard';
public static $dbPassword = '';
public static $beanstalkServer = '127.0.0.1';
public static $beanstalkPort = 11300;
public static $defaultAuthorizationEndpoint = 'https://indieauth.com/auth';
}