1;
2; This is an example configuration file for dhisd. Most of these parameters
3; can also be set using command line options. See dhisd -h for help on this.
4;
5
6; The log file
7LogFile		/var/log/dhis/dhisd.log
8
9; The PID file
10PidFile		/var/run/dhis/dhisd.pid
11
12; The address to bind. The default is 0.0.0.0 i.e. any
13BindAddress	0.0.0.0
14
15; The UDP port to use. The default is 58800
16BindPort	58800
17
18; The Database Text file or the special keyword "mysql" for MySQL
19DBFile		/usr/local/etc/dhisd.db
20; DBFile	mysql
21
22; If MySQL is enabled and used, the following parameters must be filled
23; in so that dhisd can log into the mysql database.
24MySQLServer	127.0.0.1
25MySQLUser	dhis
26MySQLPassword	secret
27MySQLDBase	DHIS
28
29
30