We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d36d83e commit a3fcedfCopy full SHA for a3fcedf
1 file changed
README.md
@@ -25,13 +25,20 @@ children = [
25
]
26
```
27
28
+Then in your config file, add:
29
+
30
+```elixir
31
+config :my_app, :dns_cluster_query, ["app.internal"]
32
+```
33
34
If you are deploying with Elixir releases, the release must be set to support longnames and
-the node must be named. These can be set in your `rel/env.sh.eex` file:
35
+the node must be named, using their IP address by default. These can be set in your
36
+`rel/env.sh.eex` file:
37
38
```sh
39
#!/bin/sh
40
export RELEASE_DISTRIBUTION=name
-export RELEASE_NODE="myapp@fully-qualified-host-or-ip"
41
+export RELEASE_NODE="myapp@fully-qualified-ip"
42
43
44
By default, nodes from the same release will have the same cookie. If you want different
0 commit comments