]> git.llucax.com Git - software/pymin.git/blob - doc/config-examples/pymin.devel.ini
Fix example configuration file for development.
[software/pymin.git] / doc / config-examples / pymin.devel.ini
1
2 ; all configuration variables in the DEFAULT section are inherited by all
3 ; other sections, so it's a good place to add common variables and default
4 ; values
5 [DEFAULT]
6 ; this are helper variables, not used by pymin (used for interpolation in
7 ; other variables)
8 pymind-data-dir = var/lib/pymin
9 pymind-config-dir = %(pymind-data-dir)s/config
10 pymind-pickle-dir = %(pymind-data-dir)s/pickle
11 ; this variables are used by pymin's services, and are reasonable defaults
12 pickle-dir = %(pymind-pickle-dir)s/%(__name__)s
13 config-dir = %(pymind-config-dir)s/%(__name__)s
14
15 ; pymind daemon configuration
16 [pymind]
17 ; IP and port where pymind should listen for commands
18 bind-addr = 0.0.0.0
19 bind-port = 9999
20 ; services plug-ins to use
21 services = dhcp qos firewall nat ppp vpn ip dns proxy vrrp
22 ; directories where to find those plug-ins
23 services-dirs = services
24 ; logging configuration file
25 log-config-files = doc/config-examples/log.devel.ini
26
27
28
29 ; SERVICES CONFIGURATION
30 ; ----------------------
31 ;
32 ; all following sections are for services configuration, a section per service
33
34 [firewall]
35 ; use the pickle-dir and config-dir values provided by DEFAULT section
36
37 [nat]
38 ; use the pickle-dir value provided by DEFAULT section
39
40 [ppp]
41 ; use the pickle-dir value provided by DEFAULT section
42 ; helper variable, not used by pymin
43 ; variables used by pymin
44 config-options-dir = %(config-dir)s
45 config-pap-dir     = %(config-dir)s
46 config-chap-dir    = %(config-dir)s
47 config-peers-dir   = %(config-dir)s/peers
48
49 [ip]
50 ; use the pickle-dir and config-dir values provided by DEFAULT section
51
52 [dns]
53 ; use the pickle-dir value provided by DEFAULT section
54 config-named-dir = %(config-dir)s
55 config-zones-dir = %(config-dir)s/zones
56
57 [dhcp]
58 ; use the pickle-dir and config-dir values provided by DEFAULT section
59
60 [proxy]
61 ; use the pickle-dir and config-dir values provided by DEFAULT section
62
63 [vrrp]
64 ; use the pickle-dir and config-dir values provided by DEFAULT section
65 pid-dir = /tmp
66
67 [vpn]
68 ; use the pickle-dir and config-dir values provided by DEFAULT section
69
70 [qos]
71 ; use the pickle-dir and config-dir values provided by DEFAULT section
72
73 ; vim: set filetype=dosini :