12 lines
434 B
PHP
12 lines
434 B
PHP
<?php
|
|
define('PSM_DB_PREFIX', 'monitor_');
|
|
define('PSM_DB_USER', 'psm');
|
|
define('PSM_DB_PASS', 'psm-dev-password');
|
|
define('PSM_DB_NAME', 'psm');
|
|
define('PSM_DB_HOST', 'localhost');
|
|
define('PSM_DB_PORT', '3306'); //3306 is the default port for MySQL. If no specfic port is used, leave it empty.
|
|
define('PSM_BASE_URL', '');
|
|
define('PSM_WEBCRON_KEY', '');
|
|
define('PSM_WEBCRON_ENABLE_IP_WHITELIST', 'true');
|
|
define('PSM_PUBLIC', false);
|