]> git.llucax.com Git - software/pymin.git/blob - doc/config-examples/pymin.debian.ini
Split proxy handler in submodules (refs #2).
[software/pymin.git] / doc / config-examples / pymin.debian.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 variables are used by pymin's services, and are reasonable defaults
7 pickle-dir = %(pymind-pickle-dir)s/%(__name__)s
8 config-dir = %(pymind-config-dir)s/%(__name__)s
9
10 ; pymind daemon configuration
11 [pymind]
12 ; IP and port where pymind should listen for commands
13 bind-addr = 127.0.0.1
14 bind-port = 9999
15 ; services plug-ins to use
16 services = dhcp qos firewall nat ppp vpn ip dns proxy vrrp
17
18
19 ; SERVICES CONFIGURATION
20 ; ----------------------
21 ;
22 ; all following sections are for services configuration, a section per service
23
24 [firewall]
25 ; use the pickle-dir value provided by DEFAULT section
26 ; there are no config files really, only temporary scripts
27 ; (that shouldn't exist)
28 config-dir = /tmp
29
30 [nat]
31 ; use the pickle-dir value provided by DEFAULT section
32
33 [ppp]
34 ; use the pickle-dir value provided by DEFAULT section
35 config-options-dir = /etc/ppp
36 config-pap-dir     = /etc/ppp
37 config-chap-dir    = /etc/ppp
38 config-peers-dir   = /etc/ppp/peers
39
40 [ip]
41 ; use the pickle-dir and config-dir values provided by DEFAULT section
42
43 [dns]
44 config-named-dir = /etc/bind9
45 config-zones-dir = /var/lib/bind9
46
47 [dhcp]
48 ; use the pickle-dir value provided by DEFAULT section
49 config-dir = /etc/dhcp3
50
51 [proxy]
52 ; use the pickle-dir value provided by DEFAULT section
53 config-dir = /etc/squid
54
55 [vrrp]
56 ; use the pickle-dir and config-dir values provided by DEFAULT section
57 pid-dir = /var/run
58
59 [vpn]
60 ; use the pickle-dir value provided by DEFAULT section
61 config-dir = /etc/tinc
62
63 [qos]
64 ; use the pickle-dir value provided by DEFAULT section
65
66 ; vim: set filetype=dosini :