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.
34 lines
749 B
34 lines
749 B
<?php
|
|
|
|
/*
|
|
* conf.php
|
|
* Dashboard for YSFGateway
|
|
* Configuration file
|
|
* Dominic Reich, OE7DRT, oe7drt@oevsv.at
|
|
*
|
|
*/
|
|
|
|
if (isset($_GET['debug'])) {
|
|
define("DEBUG", true);
|
|
}
|
|
|
|
if (isset($_GET['full'])) {
|
|
define("MAXENTRIES", 1000);
|
|
define("MAXLOGENTRIES", MAXENTRIES * 5);
|
|
} else {
|
|
define("MAXENTRIES", 20);
|
|
define("MAXLOGENTRIES", MAXENTRIES * 5);
|
|
//define("MAXLOGENTRIES", 500);
|
|
}
|
|
|
|
// default values for files etc...
|
|
define("MMDVM_INI", "/etc/MMDVM.ini");
|
|
define("YSFGW_INI", "/etc/YSFGateway.ini");
|
|
define("APRS_INI", "/etc/APRSGateway.ini");
|
|
|
|
define("LOGPATH", "/var/log/mmdvm");
|
|
define("MMDVM_PREFIX", "MMDVM");
|
|
define("YSFGW_PREFIX", "YSFGateway");
|
|
define("APRSGW_PREFIX","APRSGateway");
|
|
?>
|