File tree 3 files changed +22
-5
lines changed
3 files changed +22
-5
lines changed Original file line number Diff line number Diff line change @@ -13,3 +13,6 @@ script:
13
13
cache :
14
14
directories :
15
15
- $HOME/.cache
16
+
17
+ notifications :
18
+ email : false
Original file line number Diff line number Diff line change
1
+ dns : erl -config erldns.config -pa _build/default/lib/** /ebin -s erldns
Original file line number Diff line number Diff line change @@ -31,22 +31,34 @@ You can also write new systems to load zones by writing the zones directly to th
31
31
32
32
An example configuration file can be found in erldns.config.example.
33
33
34
- Copy it to erldns.config and modify as needed.
34
+ Copy it to ` erldns.config ` and modify as needed.
35
35
36
36
## Running
37
37
38
- Launch directly:
38
+ ### Launch directly:
39
39
40
- rebar3 shell
40
+ ``` bash
41
+ overmind start
42
+ ```
43
+
44
+ ### To get an interactive Erlang REPL:
45
+
46
+ ``` bash
47
+ ./rebar3 shell
48
+ ```
41
49
42
- Or build a distribution with ` rebar3 release ` and run the release:
50
+ ### Build a distribution with and run the release:
43
51
44
- ./_build/default/rel/erldns/bin/erldns foreground
52
+ ``` bash
53
+ ./rebar3 release
54
+ ./_build/default/rel/erldns/bin/erldns foreground
55
+ ```
45
56
46
57
## Querying
47
58
48
59
Here are some queries to try:
49
60
61
+ ``` bash
50
62
dig -p8053 @127.0.0.1 example.com a
51
63
dig -p8053 @127.0.0.1 example.com cname
52
64
dig -p8053 @127.0.0.1 example.com ns
@@ -58,6 +70,7 @@ Here are some queries to try:
58
70
dig -p8053 @127.0.0.1 example.com naptr
59
71
60
72
dig -p8053 @127.0.0.1 -x 127.0.0.1 ptr
73
+ ```
61
74
62
75
## Performance
63
76
You can’t perform that action at this time.
0 commit comments