Skip to content

Commit

Permalink
adding dnsmasq info
Browse files Browse the repository at this point in the history
  • Loading branch information
subnetmarco committed May 9, 2015
1 parent 51ead28 commit 7c54540
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 5 deletions.
11 changes: 6 additions & 5 deletions app/_data/kong_versions.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
-
version: 0.2.0-2
version: "0.2.0-2"
dependencies:
lua: 5.1.5
luarocks: 2.2.2
cassandra: 2.1.5
openresty: 1.7.10.2
lua: "5.1.4"
luarocks: "2.2.2"
dnsmasq: "2.72"
cassandra: "2.1.5"
openresty: "1.7.10.2"
3 changes: 3 additions & 0 deletions app/_includes/pages/download/other.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{% capture lua_version %}{{site.data.kong_latest.dependencies.lua}}{% endcapture %}
{% capture luarocks_version %}{{site.data.kong_latest.dependencies.luarocks}}{% endcapture %}
{% capture dnsmasq_version %}{{site.data.kong_latest.dependencies.dnsmasq}}{% endcapture %}
{% capture cassandra_version %}{{site.data.kong_latest.dependencies.cassandra}}{% endcapture %}
{% capture openresty_version %}{{site.data.kong_latest.dependencies.openresty}}{% endcapture %}

Expand All @@ -12,6 +13,8 @@

Install [Luarocks v{{luarocks_version}}](https://github.com/keplerproject/luarocks/wiki/Download)

Install [Dnsmasq v{{dnsmasq_version}}](http://www.thekelleys.org.uk/dnsmasq/)

Install [OpenResty v{{openresty_version}}](http://openresty.com/#Installation), with the following `configure` options:

```bash
Expand Down
15 changes: 15 additions & 0 deletions app/docs/0.2.0-2/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ They are all **required**.

- [**proxy_port**](#proxy_port)
- [**admin_api_port**](#admin_api_port)
- [**dnsmasq_port**](#dnsmasq_port)
- [**nginx_working_dir**](#nginx_working_dir)
- [**plugins_available**](#plugins_available)
- [**send_anonymous_reports**](#send_anonymous_reports)
Expand Down Expand Up @@ -61,6 +62,20 @@ admin_api_port: 8001

---

### `dnsmasq_port`

Port where [Dnsmasq](http://www.thekelleys.org.uk/dnsmasq/doc.html) will listen to.

**Note:** This port is used to manage properly resolve DNS addresses by the Kong instances, therefore it should be placed behind a firewall or closed off network to ensure security.

**Default:**

```yaml
dnsmasq_port: 8053
```

---

### `nginx_working_dir`

Similar to the NGINX `--prefix` option, it defines a directory that will contain server files, such as access and error logs, or the Kong pid file.
Expand Down

0 comments on commit 7c54540

Please sign in to comment.