-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconfig.php
38 lines (29 loc) · 1.46 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/********************************************************
Configuration file for Direwolf SimpleWebstat.
********************************************************/
//timezone
$timezone = "Europe/Warsaw";
$version = "0.1beta";
$logpath = "/opt/direwolf/log/"; //path of the direwolf log directory, without file name
$logname = ""; //log file name. If empty, the standard Y-m-d.log file name (generated every day by direwolf) will be used.
//interfaces index declared in direwolf conf file. Indexes separated by commas
$interfaces=array(0,1);
//interface descriptions. Insert strings between "" and separated by commas
$intdesc=array("144.800 VHF Port","432.500 UHF Port");
//static_if skips interface choice every time
$static_if = 1; //1 to enable static interface
$static_if_index = 0; //interface index when static_if is enabled
//station posistion data for calculating distance from received station
$stationlat = 52.00000; //station latitude in decimal degrees
$stationlon = 21.00000; //station longtitude in decimal degrees
//logo path,with file name, shown on the top of the page
$logourl="direwolf.png";
//miles/km distsance selector
$miles = 0; //1 to enable miles, 0 to enable km
//AX.25 realtime traffic watch config
$refresh=1000; //refresh time in ms. Don't go below 1000
$timestampcolor="silver"; //color of timestamp
$pathcolor="purple"; //color of path string
$startrows=5; //number of last rows displayed at session opening
?>