mirror of
https://github.com/YunoHost-Apps/phpservermon_ynh.git
synced 2024-09-03 19:56:40 +02:00
9 lines
372 B
Text
9 lines
372 B
Text
<?php
|
|
define('PSM_DB_PREFIX', 'monitor_');
|
|
define('PSM_DB_USER', '__DB_NAME__');
|
|
define('PSM_DB_PASS', '__DB_PWD__');
|
|
define('PSM_DB_NAME', '__DB_NAME__');
|
|
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', '__PATH__');
|
|
define('PSM_WEBCRON_KEY', '');
|