blob: e85f36fc9e38c8f0ae1d36b98f37b18f1803ab60 [file] [log] [blame]
Ales Komarekd5029c82015-01-07 13:58:23 +01001
2========
3PowerDNS
4========
5
Ales Komarek347430d2015-01-07 17:41:49 +01006Sample pillar:
Ales Komarekd5029c82015-01-07 13:58:23 +01007
Ales Komarek347430d2015-01-07 17:41:49 +01008PowerDNS server with MySQL backend
Ales Komarekd5029c82015-01-07 13:58:23 +01009
Ivan Suzdal67bcad52017-05-26 18:45:54 +030010.. code-block:: yaml
11 powedns:
12 server:
13 enabled: true
14 backend:
15 engine: mysql
16 host: localhost
17 port: 3306
18 name: pdns
19 user: pdns
20 password: password
21 bind:
22 address: 0.0.0.0
23 port: 53
24
25PowerDNS server with sqlite backend
26
27.. code-block:: yaml
28 powerdns:
29 server:
30 enabled: true
31 backend:
32 engine: sqlite
33 dbname: pdns.sqlite
34 dbpath: /var/lib/powerdns
35 bind:
36 address: 127.0.0.1
37 port: 55
38 default-soa-name: ns1.domain.tld
39 soa-minimum-ttl: 3600
40
Ales Komarekd5029c82015-01-07 13:58:23 +010041
42Read more
Ales Komarekfba5da92015-01-08 07:20:58 +010043=========